https://gcc.gnu.org/g:898f2e83a13fde11a93a4904a71b432155e2cf12

commit 898f2e83a13fde11a93a4904a71b432155e2cf12
Author: Sam James <[email protected]>
Date:   Fri Nov 22 21:21:06 2024 +0000

    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.

Diff:
---
 .github/workflows/ccpp.yml | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml
index 841dde2e7c10..a6f290d54cee 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/

Reply via email to