File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 12
12
paths :
13
13
- .github/workflows/build-manywheel-images.yml
14
14
- manywheel/Dockerfile
15
+ - manywheel/Dockerfile_2_28
15
16
- manywheel/Dockerfile_aarch64
16
17
- manywheel/Dockerfile_cuda_aarch64
17
18
- manywheel/Dockerfile_cxx11-abi
21
22
paths :
22
23
- .github/workflows/build-manywheel-images.yml
23
24
- manywheel/Dockerfile
25
+ - manywheel/Dockerfile_2_28
24
26
- manywheel/Dockerfile_aarch64
25
27
- manywheel/Dockerfile_cuda_aarch64
26
28
- manywheel/Dockerfile_cxx11-abi
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/op
16
16
# cmake-3.18.4 from pip
17
17
RUN yum install -y python3-pip && \
18
18
python3 -mpip install cmake==3.18.4 && \
19
- ln -s /usr/local/bin/cmake /usr/bin/cmake
19
+ ln -s /usr/local/bin/cmake /usr/bin/cmake3
20
20
21
21
FROM base as openssl
22
22
# Install openssl (this must precede `build python` step)
@@ -119,10 +119,11 @@ ARG DEVTOOLSET_VERSION=11
119
119
# Ensure the expected devtoolset is used
120
120
ENV PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/bin:$PATH
121
121
ENV LD_LIBRARY_PATH=/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib64:/opt/rh/gcc-toolset-${DEVTOOLSET_VERSION}/root/usr/lib:$LD_LIBRARY_PATH
122
- # cmake
123
- RUN yum install -y cmake3 && \
124
- ln -s /usr/bin/cmake3 /usr/bin/cmake
125
122
123
+ # cmake-3.18.4 from pip
124
+ RUN yum install -y python3-pip && \
125
+ python3 -mpip install cmake==3.18.4 && \
126
+ ln -s /usr/local/bin/cmake /usr/bin/cmake3
126
127
127
128
FROM cpu_final as cuda_final
128
129
RUN rm -rf /usr/local/cuda-${BASE_CUDA_VERSION}
You can’t perform that action at this time.
0 commit comments