File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 13
13
fail-fast : false
14
14
matrix :
15
15
include :
16
- - manylinux_base : manylinux2014
16
+ - manylinux_base : manylinux_2_28
17
17
rust_version : 1.83.0
18
18
platform : x86_64
19
19
steps :
37
37
build-args : |
38
38
MANYLINUX_BASE=${{ matrix.manylinux_base }}
39
39
RUST_VERSION=${{ matrix.rust_version }}
40
+ NTL_VERSION=${{ matrix.ntl_version }}
40
41
PLATFORM=${{ matrix.platform }}
41
42
- name : Image digest
42
43
run : echo ${{ steps.docker_build.outputs.digest }}
Original file line number Diff line number Diff line change @@ -8,15 +8,12 @@ ARG PLATFORM
8
8
RUN echo manylinux: $MANYLINUX_BASE
9
9
RUN echo rust: $RUST_VERSION
10
10
RUN echo platform: $PLATFORM
11
- RUN yum -y install centos-release-scl
12
- RUN yum -y install llvm-toolset-7.0
11
+ RUN dnf -y install clang llvm
13
12
RUN cd /root \
14
13
&& echo https://static.rust-lang.org/dist/rust-$RUST_VERSION-$PLATFORM-unknown-linux-gnu.tar.gz \
15
14
&& curl -O https://static.rust-lang.org/dist/rust-$RUST_VERSION-$PLATFORM-unknown-linux-gnu.tar.gz \
16
15
&& tar xzf rust-$RUST_VERSION-$PLATFORM-unknown-linux-gnu.tar.gz \
17
16
&& rust-$RUST_VERSION-$PLATFORM-unknown-linux-gnu/install.sh --components=rustc,cargo,rust-std-$PLATFORM-unknown-linux-gnu \
18
17
&& rm -rf rust-$RUST_VERSION-$PLATFORM-unknown-linux-gnu \
19
18
&& rm -rf rust-$RUST_VERSION-$PLATFORM-unknown-linux-gnu.tar.gz
20
- ENTRYPOINT ["manylinux-entrypoint" , "scl" , "enable" , "llvm-toolset-7.0" ]
21
-
22
19
You can’t perform that action at this time.
0 commit comments