Skip to content

Commit

Permalink
Bump main Ubuntu version to 24.04 in GitHub Actions [circle skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
laurynas-biveinis committed Jul 16, 2024
1 parent 45998e9 commit 529ca61
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
49 changes: 24 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,122 +35,122 @@ jobs:
matrix:
include:
- name: GCC 13 Release
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: gcc

- name: GCC 13 Release with ASan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: gcc
SANITIZE_ADDRESS: ON

- name: GCC 13 Release with TSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: gcc
SANITIZE_THREAD: ON

- name: GCC 13 Release with UBSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: gcc
SANITIZE_UB: ON

- name: GCC 13 Debug
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: gcc

- name: GCC 13 Debug with ASan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: gcc
SANITIZE_ADDRESS: ON

- name: GCC 13 Debug with TSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: gcc
SANITIZE_THREAD: ON

- name: GCC 13 Debug with UBSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: gcc
SANITIZE_UB: ON

- name: GCC 13 Debug without AVX2
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: gcc
AVX2: OFF

- name: GCC 13 Release static analysis & cpplint
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: gcc
STATIC_ANALYSIS: ON
CPPLINT: ON

- name: GCC 13 default CMake configuration
os: ubuntu-22.04
os: ubuntu-24.04
COMPILER: gcc

- name: clang 18 Release
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: clang

- name: clang 18 Release with ASan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
SANITIZE_ADDRESS: ON
COMPILER: clang

- name: clang 18 Release with TSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
SANITIZE_THREAD: ON
COMPILER: clang

- name: clang 18 Release with UBSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
SANITIZE_UB: ON
COMPILER: clang

- name: clang 18 Debug
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: clang

- name: clang 18 Debug with ASan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
SANITIZE_ADDRESS: ON
COMPILER: clang

- name: clang 18 Debug with TSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
SANITIZE_THREAD: ON
COMPILER: clang

- name: clang 18 Debug with UBSan
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
SANITIZE_UB: ON
COMPILER: clang

- name: clang 18 Release static analysis
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: clang
STATIC_ANALYSIS: ON

- name: clang 18 Debug static analysis
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: clang
STATIC_ANALYSIS: ON
Expand Down Expand Up @@ -266,14 +266,14 @@ jobs:
AVX2: OFF

- name: Debug coverage
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Debug
COMPILER: gcc
COVERAGE: ON
AVX2: OFF

- name: Release coverage
os: ubuntu-22.04
os: ubuntu-24.04
BUILD_TYPE: Release
COMPILER: gcc
COVERAGE: ON
Expand All @@ -288,7 +288,6 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libboost-dev libc6-dev-i386
sudo apt-get remove clang-tidy-11
if: runner.os == 'Linux'

- name: Setup dependencies for cpplint
Expand All @@ -306,7 +305,7 @@ jobs:
run: |
curl 'https://apt.llvm.org/llvm-snapshot.gpg.key' \
| sudo apt-key add -
echo 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main' \
echo 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main' \
| sudo tee -a /etc/apt/sources.list
sudo apt-get update
sudo apt-get install -y clang-18 iwyu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ permissions: { }
jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down

0 comments on commit 529ca61

Please sign in to comment.