Auto merge of #113714 - Kobzol:ci-cmake, r=nikic
CI: build CMake 3.20 to support LLVM 17 LLVM 17 will require CMake at least 3.20, so we have to go back to building our own CMake on the Linux x64 dist builder. r? `@nikic`
This commit is contained in:
commit
c4e6fe9240
@ -251,8 +251,11 @@ fn main() {
|
|||||||
} else if target.contains("windows-gnu") {
|
} else if target.contains("windows-gnu") {
|
||||||
println!("cargo:rustc-link-lib=shell32");
|
println!("cargo:rustc-link-lib=shell32");
|
||||||
println!("cargo:rustc-link-lib=uuid");
|
println!("cargo:rustc-link-lib=uuid");
|
||||||
} else if target.contains("netbsd") || target.contains("haiku") || target.contains("darwin") {
|
} else if target.contains("haiku") || target.contains("darwin") {
|
||||||
println!("cargo:rustc-link-lib=z");
|
println!("cargo:rustc-link-lib=z");
|
||||||
|
} else if target.contains("netbsd") {
|
||||||
|
println!("cargo:rustc-link-lib=z");
|
||||||
|
println!("cargo:rustc-link-lib=execinfo");
|
||||||
}
|
}
|
||||||
cmd.args(&components);
|
cmd.args(&components);
|
||||||
|
|
||||||
|
@ -17,6 +17,9 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
|
|||||||
xz-utils \
|
xz-utils \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -13,6 +13,7 @@ RUN apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-
|
|||||||
git \
|
git \
|
||||||
libc6-dev \
|
libc6-dev \
|
||||||
libc6-dev-armhf-cross \
|
libc6-dev-armhf-cross \
|
||||||
|
libssl-dev \
|
||||||
make \
|
make \
|
||||||
ninja-build \
|
ninja-build \
|
||||||
python3 \
|
python3 \
|
||||||
@ -75,6 +76,9 @@ RUN arm-linux-gnueabihf-gcc addentropy.c -o rootfs/addentropy -static
|
|||||||
# Source of the file: https://github.com/vfdev-5/qemu-rpi2-vexpress/raw/master/vexpress-v2p-ca15-tc1.dtb
|
# Source of the file: https://github.com/vfdev-5/qemu-rpi2-vexpress/raw/master/vexpress-v2p-ca15-tc1.dtb
|
||||||
RUN curl -O https://ci-mirrors.rust-lang.org/rustc/vexpress-v2p-ca15-tc1.dtb
|
RUN curl -O https://ci-mirrors.rust-lang.org/rustc/vexpress-v2p-ca15-tc1.dtb
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
libssl-dev \
|
libssl-dev \
|
||||||
pkg-config
|
pkg-config
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
@ -19,6 +19,7 @@ RUN apt-get update -y && apt-get install -y --no-install-recommends \
|
|||||||
g++ \
|
g++ \
|
||||||
libc6-dev \
|
libc6-dev \
|
||||||
libc6-dev-riscv64-cross \
|
libc6-dev-riscv64-cross \
|
||||||
|
libssl-dev \
|
||||||
make \
|
make \
|
||||||
ninja-build \
|
ninja-build \
|
||||||
patch \
|
patch \
|
||||||
@ -94,6 +95,9 @@ RUN mkdir build && cd build && \
|
|||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
RUN rm -rf /tmp/riscv-pk
|
RUN rm -rf /tmp/riscv-pk
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -48,6 +48,9 @@ COPY host-x86_64/dist-x86_64-linux/shared.sh /tmp/
|
|||||||
COPY host-x86_64/dist-x86_64-linux/build-gcc.sh /tmp/
|
COPY host-x86_64/dist-x86_64-linux/build-gcc.sh /tmp/
|
||||||
RUN ./build-gcc.sh && yum remove -y gcc gcc-c++
|
RUN ./build-gcc.sh && yum remove -y gcc gcc-c++
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /tmp/
|
||||||
|
RUN ./cmake.sh
|
||||||
|
|
||||||
# Now build LLVM+Clang, afterwards configuring further compilations to use the
|
# Now build LLVM+Clang, afterwards configuring further compilations to use the
|
||||||
# clang/clang++ compilers.
|
# clang/clang++ compilers.
|
||||||
COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
|
COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
|
||||||
|
@ -14,6 +14,9 @@ RUN apt-get install -y --no-install-recommends rpm2cpio cpio
|
|||||||
COPY host-x86_64/dist-powerpc64le-linux/shared.sh host-x86_64/dist-powerpc64le-linux/build-powerpc64le-toolchain.sh /tmp/
|
COPY host-x86_64/dist-powerpc64le-linux/shared.sh host-x86_64/dist-powerpc64le-linux/build-powerpc64le-toolchain.sh /tmp/
|
||||||
RUN ./build-powerpc64le-toolchain.sh
|
RUN ./build-powerpc64le-toolchain.sh
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -186,6 +186,9 @@ ENV SCRIPT \
|
|||||||
python3 ../x.py --stage 2 test --host='' --target $RUN_MAKE_TARGETS tests/run-make && \
|
python3 ../x.py --stage 2 test --host='' --target $RUN_MAKE_TARGETS tests/run-make && \
|
||||||
python3 ../x.py dist --host='' --target $TARGETS
|
python3 ../x.py dist --host='' --target $TARGETS
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
# sccache
|
# sccache
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
@ -96,6 +96,9 @@ RUN /tmp/build-wasi-toolchain.sh
|
|||||||
COPY scripts/freebsd-toolchain.sh /tmp/
|
COPY scripts/freebsd-toolchain.sh /tmp/
|
||||||
RUN /tmp/freebsd-toolchain.sh i686
|
RUN /tmp/freebsd-toolchain.sh i686
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -48,6 +48,10 @@ COPY host-x86_64/dist-x86_64-linux/shared.sh /tmp/
|
|||||||
COPY host-x86_64/dist-x86_64-linux/build-gcc.sh /tmp/
|
COPY host-x86_64/dist-x86_64-linux/build-gcc.sh /tmp/
|
||||||
RUN ./build-gcc.sh && yum remove -y gcc gcc-c++
|
RUN ./build-gcc.sh && yum remove -y gcc gcc-c++
|
||||||
|
|
||||||
|
# LLVM 17 needs cmake 3.20 or higher.
|
||||||
|
COPY scripts/cmake.sh /tmp/
|
||||||
|
RUN ./cmake.sh
|
||||||
|
|
||||||
# Now build LLVM+Clang, afterwards configuring further compilations to use the
|
# Now build LLVM+Clang, afterwards configuring further compilations to use the
|
||||||
# clang/clang++ compilers.
|
# clang/clang++ compilers.
|
||||||
COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
|
COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
|
||||||
|
@ -7,6 +7,9 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y zlib1g-dev
|
|||||||
COPY host-x86_64/dist-x86_64-netbsd/build-netbsd-toolchain.sh /tmp/
|
COPY host-x86_64/dist-x86_64-netbsd/build-netbsd-toolchain.sh /tmp/
|
||||||
RUN /tmp/build-netbsd-toolchain.sh
|
RUN /tmp/build-netbsd-toolchain.sh
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -37,6 +37,9 @@ COPY scripts/musl-toolchain.sh /build/
|
|||||||
RUN bash musl-toolchain.sh x86_64 && rm -rf build
|
RUN bash musl-toolchain.sh x86_64 && rm -rf build
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -13,12 +13,16 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
|
|||||||
sudo \
|
sudo \
|
||||||
gdb \
|
gdb \
|
||||||
xz-utils \
|
xz-utils \
|
||||||
|
libssl-dev \
|
||||||
bzip2 \
|
bzip2 \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY scripts/emscripten.sh /scripts/
|
COPY scripts/emscripten.sh /scripts/
|
||||||
RUN bash /scripts/emscripten.sh
|
RUN bash /scripts/emscripten.sh
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -26,6 +26,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
clang \
|
clang \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -18,6 +18,9 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
|
|||||||
xz-utils \
|
xz-utils \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|||||||
mingw-w64 \
|
mingw-w64 \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
COPY scripts/cmake.sh /scripts/
|
||||||
|
RUN /scripts/cmake.sh
|
||||||
|
|
||||||
COPY scripts/sccache.sh /scripts/
|
COPY scripts/sccache.sh /scripts/
|
||||||
RUN sh /scripts/sccache.sh
|
RUN sh /scripts/sccache.sh
|
||||||
|
|
||||||
|
@ -18,9 +18,9 @@ exit 1
|
|||||||
set -x
|
set -x
|
||||||
}
|
}
|
||||||
|
|
||||||
# LLVM 12 requires CMake 3.13.4 or higher.
|
# LLVM 17 requires CMake 3.20 or higher.
|
||||||
# This script is not necessary for images using Ubuntu 20.04 or newer.
|
# This script is not necessary for images using Ubuntu 22.04 or newer.
|
||||||
CMAKE=3.13.4
|
CMAKE=3.20.3
|
||||||
curl -L https://github.com/Kitware/CMake/releases/download/v$CMAKE/cmake-$CMAKE.tar.gz | tar xzf -
|
curl -L https://github.com/Kitware/CMake/releases/download/v$CMAKE/cmake-$CMAKE.tar.gz | tar xzf -
|
||||||
|
|
||||||
mkdir cmake-build
|
mkdir cmake-build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user