summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorsudlud <sudlud@users.noreply.github.com>2024-05-17 22:56:15 +0200
committerGitHub <noreply@github.com>2024-05-17 22:56:15 +0200
commit7b23439b8f4866fc10ce7dd62a150dcf9de9a17d (patch)
treee6d17a7cfa3c60476103e15bbd07d8856e483fa7 /.github/workflows
parentdfc9abb754a5790941b63422da4741bc4c765937 (diff)
feat(CI): add CI for ubuntu-24.04 (#18909)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/core-build-nopch.yml8
-rw-r--r--.github/workflows/core-build-pch.yml8
2 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/core-build-nopch.yml b/.github/workflows/core-build-nopch.yml
index a9257ced16..f7deee68db 100644
--- a/.github/workflows/core-build-nopch.yml
+++ b/.github/workflows/core-build-nopch.yml
@@ -35,6 +35,14 @@ jobs:
compiler:
CC: gcc-12
CXX: g++-12
+ - os: ubuntu-24.04
+ compiler:
+ CC: clang-18
+ CXX: clang++-18
+ - os: ubuntu-24.04
+ compiler:
+ CC: gcc-14
+ CXX: g++-14
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-nopch
if: github.repository == 'azerothcore/azerothcore-wotlk'
diff --git a/.github/workflows/core-build-pch.yml b/.github/workflows/core-build-pch.yml
index 3064fc6e37..736aee8810 100644
--- a/.github/workflows/core-build-pch.yml
+++ b/.github/workflows/core-build-pch.yml
@@ -32,6 +32,14 @@ jobs:
compiler:
CC: gcc-12
CXX: g++-12
+ - os: ubuntu-24.04
+ compiler:
+ CC: clang-18
+ CXX: clang++-18
+ - os: ubuntu-24.04
+ compiler:
+ CC: gcc-14
+ CXX: g++-14
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}-${{ matrix.compiler.CC }}-pch
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft