diff options
author | Sam James <sam@gentoo.org> | 2024-11-22 21:21:06 +0000 |
---|---|---|
committer | Thomas Schwinge <thomas@schwinge.name> | 2024-11-25 21:41:40 +0100 |
commit | 898f2e83a13fde11a93a4904a71b432155e2cf12 (patch) | |
tree | 20d4ffb5782499ccd781cef52bbee7dea103c9bf | |
parent | fa547376d462f8e6ef9082e759266e04703d8c98 (diff) | |
download | gcc-898f2e83a13fde11a93a4904a71b432155e2cf12.zip gcc-898f2e83a13fde11a93a4904a71b432155e2cf12.tar.gz gcc-898f2e83a13fde11a93a4904a71b432155e2cf12.tar.bz2 |
CI: upgrade GCC baseline from 4.8 -> 5.4 (5.5)
GCC's baseline was changed from C++11 -> C++14 and GCC 4.8 -> GCC 5.4
in r15-4719-ga9ec1bc06bd3cc, so adjust the baseline CI job accordingly.
One quirk here is that the Ubuntu image we're using in CI has 5.5.0
rather than 5.4.0. But I think we can eat that difference.
ChangeLog:
* .github/workflows/ccpp.yml: Use GCC 5.5 instead of GCC 4.8.
-rw-r--r-- | .github/workflows/ccpp.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 841dde2..a6f290d 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -266,7 +266,7 @@ jobs: exit 0; \ fi - build-and-check-gcc-48: + build-and-check-gcc-5: runs-on: ubuntu-22.04 container: ubuntu:18.04 @@ -291,10 +291,10 @@ jobs: libmpfr-dev \ libmpc-dev \ build-essential \ - gcc-4.8 \ - g++-4.8 \ - gcc-4.8-multilib \ - g++-4.8-multilib \ + gcc-5 \ + g++-5 \ + gcc-5-multilib \ + g++-5-multilib \ dejagnu; # install Rust directly using rustup curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0; @@ -307,8 +307,8 @@ jobs: mkdir -p gccrs-build; cd gccrs-build; ../configure \ - CC='gcc-4.8' \ - CXX='g++-4.8' \ + CC='gcc-5' \ + CXX='g++-5' \ --enable-languages=rust \ --disable-bootstrap \ --enable-multilib @@ -328,7 +328,7 @@ jobs: - name: Archive check-rust results uses: actions/upload-artifact@v3 with: - name: check-rust-logs-4.8 + name: check-rust-logs-5 path: | gccrs-build/gcc/testsuite/rust/ |