Skip to content

Commit

Permalink
bumping everything to ubuntu 24
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Nov 18, 2024
1 parent fbe840f commit f60614c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu 22.04 (Release build)
name: Ubuntu 24.04 (Release build)

on:
pull_request:
Expand All @@ -22,10 +22,10 @@ concurrency:

jobs:
ubuntu-release-build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
cxx: [g++-12, clang++-14]
cxx: [g++, clang++]
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Ninja
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-sanitized.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu 22.04 (GCC 12 SANITIZED)
name: Ubuntu 24.04 (GCC 12 SANITIZED)

on:
pull_request:
Expand All @@ -22,7 +22,7 @@ concurrency:

jobs:
ubuntu-build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
shared: [ON, OFF]
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Prepare
run: cmake -D ADA_TESTING=ON -DADA_SANITIZE=ON -DADA_DEVELOPMENT_CHECKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
env:
CXX: g++-12
CXX: g++
- name: Build
run: cmake --build build -j=4
- name: Test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu-undef.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu 22.04 (GCC 12 SANITIZE UNDEFINED)
name: Ubuntu 24.04 (GCC 12 SANITIZE UNDEFINED)

on:
pull_request:
Expand All @@ -22,7 +22,7 @@ concurrency:

jobs:
ubuntu-build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
shared: [ON, OFF]
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Prepare
run: cmake -D ADA_TESTING=ON -D ADA_SANITIZE_UNDEFINED=ON -DADA_DEVELOPMENT_CHECKS=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
env:
CXX: g++-12
CXX: g++
- name: Build
run: cmake --build build -j=4
- name: Test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ubuntu_pedantic.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Ubuntu 22.04 (GCC 12) Fails On Compiler Warnings
name: Ubuntu 24.04 Fails On Compiler Warnings

on:
pull_request:
Expand All @@ -22,7 +22,7 @@ concurrency:

jobs:
ubuntu-build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
shared: [ON, OFF]
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Prepare
run: cmake -D ADA_TESTING=ON -DBUILD_SHARED_LIBS=${{matrix.shared}} -G Ninja -B build
env:
CXX: g++-12
CXX: g++
CXXFLAGS: -Werror
- name: Build
run: cmake --build build -j=4
Expand Down

0 comments on commit f60614c

Please sign in to comment.