diff options
| author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-11-17 22:59:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-18 02:59:10 +0100 |
| commit | 238590aa9fdfe2aac04bb96abad2f2d2feb3101a (patch) | |
| tree | f8fa04e39baecb5460076c1329ca38ae31f440b6 /.github/workflows | |
| parent | 483c10c94b8a5de49cee4c4b9a3ce74726501c8a (diff) | |
chore: use Rust 1.65.0 (#16688)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34b6e6289..70424c0b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,15 +157,15 @@ jobs: # to complete. sudo apt-get remove --purge -y man-db - # Install clang-14, lld-14, and debootstrap. - echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-14 main" | - sudo dd of=/etc/apt/sources.list.d/llvm-toolchain-focal-14.list + # Install clang-15, lld-15, and debootstrap. + echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-15 main" | + sudo dd of=/etc/apt/sources.list.d/llvm-toolchain-focal-15.list curl https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/llvm-snapshot.gpg sudo apt-get update sudo apt-get install --no-install-recommends debootstrap \ - clang-14 lld-14 + clang-15 lld-15 # Create ubuntu-16.04 sysroot environment, which is used to avoid # depending on a very recent version of glibc. @@ -190,8 +190,8 @@ jobs: CARGO_PROFILE_RELEASE_LTO=false RUSTFLAGS<<__1 -C linker-plugin-lto=true - -C linker=clang-14 - -C link-arg=-fuse-ld=lld-14 + -C linker=clang-15 + -C link-arg=-fuse-ld=lld-15 -C link-arg=--sysroot=/sysroot -C link-arg=-Wl,--allow-shlib-undefined -C link-arg=-Wl,--thinlto-cache-dir=$(pwd)/target/release/lto-cache @@ -200,15 +200,15 @@ jobs: __1 RUSTDOCFLAGS<<__1 -C linker-plugin-lto=true - -C linker=clang-14 - -C link-arg=-fuse-ld=lld-14 + -C linker=clang-15 + -C link-arg=-fuse-ld=lld-15 -C link-arg=--sysroot=/sysroot -C link-arg=-Wl,--allow-shlib-undefined -C link-arg=-Wl,--thinlto-cache-dir=$(pwd)/target/release/lto-cache -C link-arg=-Wl,--thinlto-cache-policy,cache_size_bytes=700m ${{ env.RUSTFLAGS }} __1 - CC=clang-14 + CC=clang-15 CFLAGS=-flto=thin --sysroot=/sysroot __0 |
