Skip to content

Commit

Permalink
[CI] Use GCC 14.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Aug 23, 2024
1 parent 2485599 commit ea07805
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-low-cadence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ '13' ]
version: [ '14' ]
env:
CC: gcc-${{ matrix.version }}
CXX: g++-${{ matrix.version }}
Expand Down Expand Up @@ -288,11 +288,11 @@ jobs:

cpp-sanitize-gcc:
name: C++ Sanitise Build GCC ${{ matrix.version }}
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version: [ '13' ]
version: [ '14' ]
env:
CC: gcc-${{ matrix.version }}
CXX: g++-${{ matrix.version }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,13 @@ jobs:
name: crash-logs-gcc-2004-${{ matrix.version }}
path: ${{ steps.copy_test_logs.outputs.file }}

cpp-gcc-2204-build:
name: C++ GCC ${{ matrix.version }} (Ubuntu 22.04)
cpp-gcc-2404-build:
name: C++ GCC ${{ matrix.version }} (Ubuntu 24.04)
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
version: [ '11', '12', '13' ]
version: [ '11', '12', '13', '14' ]
env:
CC: gcc-${{ matrix.version }}
CXX: g++-${{ matrix.version }}
Expand Down Expand Up @@ -293,7 +293,7 @@ jobs:
if: always() && steps.copy_test_logs.outputs.file == 'build/distributions/test_logs.tbz2'
uses: actions/upload-artifact@v4
with:
name: crash-logs-gcc-2204-${{ matrix.version }}
name: crash-logs-gcc-2404-${{ matrix.version }}
path: ${{ steps.copy_test_logs.outputs.file }}

cpp-gcc-rocky-build:
Expand Down Expand Up @@ -390,8 +390,8 @@ jobs:
name: crash-logs-clang-2004-${{ matrix.version }}
path: ${{ steps.copy_test_logs.outputs.file }}

cpp-clang-ubuntu-2204-build:
name: C++ Clang ${{ matrix.version }} (Ubuntu 22.04)
cpp-clang-ubuntu-2404-build:
name: C++ Clang ${{ matrix.version }} (Ubuntu 24.04)
runs-on: ubuntu-24.04
strategy:
fail-fast: false
Expand Down Expand Up @@ -451,7 +451,7 @@ jobs:
if: always() && steps.copy_test_logs.outputs.file == 'build/distributions/test_logs.tbz2'
uses: actions/upload-artifact@v4
with:
name: crash-logs-clang-2204-${{ matrix.version }}
name: crash-logs-clang-2404-${{ matrix.version }}
path: ${{ steps.copy_test_logs.outputs.file }}

cpp-clang-debug-build:
Expand Down

0 comments on commit ea07805

Please sign in to comment.