summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorsudlud <sudlud@users.noreply.github.com>2024-06-13 15:21:53 +0200
committerGitHub <noreply@github.com>2024-06-13 15:21:53 +0200
commit302421ae4b6715ad36a642ebdb49367777e2fd49 (patch)
tree6a87e45ac9fadba4d8de7ae2b19f3975be74e1a0 /.github
parent7441938bc36ac37f5641f009ed28375bd9c10d43 (diff)
fix(CI): reintroduce ubuntu-22.04 checks (#19052)
- we wan to support the 2 latest ubuntu LTS versions
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/core-build-nopch.yml8
-rw-r--r--.github/workflows/core-build-pch.yml4
2 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/core-build-nopch.yml b/.github/workflows/core-build-nopch.yml
index c26e559888..e3882a860e 100644
--- a/.github/workflows/core-build-nopch.yml
+++ b/.github/workflows/core-build-nopch.yml
@@ -19,6 +19,14 @@ jobs:
fail-fast: false
matrix:
include:
+ - os: ubuntu-22.04
+ compiler:
+ CC: clang-15
+ CXX: clang++-15
+ - os: ubuntu-22.04
+ compiler:
+ CC: gcc-12
+ CXX: g++-12
- os: ubuntu-24.04
compiler:
CC: clang-18
diff --git a/.github/workflows/core-build-pch.yml b/.github/workflows/core-build-pch.yml
index 57bcd49108..a824e78eb4 100644
--- a/.github/workflows/core-build-pch.yml
+++ b/.github/workflows/core-build-pch.yml
@@ -16,6 +16,10 @@ jobs:
fail-fast: false
matrix:
include:
+ - os: ubuntu-22.04
+ compiler:
+ CC: clang-15
+ CXX: clang++-15
- os: ubuntu-24.04
compiler:
CC: clang-18