提交测试

This commit is contained in:
2024-01-16 17:22:21 +08:00
parent 92862c0372
commit 73635fda01
654 changed files with 178015 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
# Note: Keep C:\Program Files (x86)\Microsoft Visual Studio\Installer directory.
# disutils/setuptools calls vswhere.exe from that location unconditionally.
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
#### Kaolin ####
WORKDIR /kaolin
RUN conda list > conda_build.txt
COPY . .
# NOTE: pin setuptools to avoid directory copy bug
RUN pip install --upgrade --no-cache-dir setuptools==58.0.0 certifi
RUN pip install --no-cache-dir --trusted-host pypi.org --trusted-host pypi.python.org \
--trusted-host files.pythonhosted.org -r tools\ci_requirements.txt \
-r tools\viz_requirements.txt -r tools\requirements.txt -r tools/build_requirements.txt
RUN python setup.py develop
# fix for paging memory issue on CI machines
# see: https://gist.github.com/cobryan05/7d1fe28dd370e110a372c4d268dcb2e5
RUN pip install pefile
COPY tools/fixNvPe.py c:/data/