summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/core-build-nopch.yml16
-rw-r--r--.github/workflows/core-build-pch.yml20
-rw-r--r--.github/workflows/import_pending.yml2
-rw-r--r--.github/workflows/pr_labeler.yml2
-rw-r--r--.github/workflows/tools_build.yml2
5 files changed, 3 insertions, 39 deletions
diff --git a/.github/workflows/core-build-nopch.yml b/.github/workflows/core-build-nopch.yml
index f7deee68db..c26e559888 100644
--- a/.github/workflows/core-build-nopch.yml
+++ b/.github/workflows/core-build-nopch.yml
@@ -19,22 +19,6 @@ jobs:
fail-fast: false
matrix:
include:
- - os: ubuntu-20.04
- compiler:
- CC: gcc-10
- CXX: g++-10
- - os: ubuntu-20.04
- compiler:
- CC: clang-12
- CXX: clang++-12
- - 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 736aee8810..57bcd49108 100644
--- a/.github/workflows/core-build-pch.yml
+++ b/.github/workflows/core-build-pch.yml
@@ -16,30 +16,10 @@ jobs:
fail-fast: false
matrix:
include:
- - os: ubuntu-20.04
- compiler:
- CC: gcc-10
- CXX: g++-10
- - os: ubuntu-20.04
- compiler:
- CC: clang-12
- CXX: clang++-12
- - 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
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
diff --git a/.github/workflows/import_pending.yml b/.github/workflows/import_pending.yml
index fd5bdf0776..7b21193b86 100644
--- a/.github/workflows/import_pending.yml
+++ b/.github/workflows/import_pending.yml
@@ -8,7 +8,7 @@ jobs:
import-pending:
strategy:
fail-fast: false
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
permissions: write-all
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
steps:
diff --git a/.github/workflows/pr_labeler.yml b/.github/workflows/pr_labeler.yml
index 28ee6bd3df..21b73fc842 100644
--- a/.github/workflows/pr_labeler.yml
+++ b/.github/workflows/pr_labeler.yml
@@ -4,7 +4,7 @@ on:
jobs:
triage:
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
permissions: write-all
if: github.repository == 'azerothcore/azerothcore-wotlk'
steps:
diff --git a/.github/workflows/tools_build.yml b/.github/workflows/tools_build.yml
index 2e1a6a9aff..99c69c2c47 100644
--- a/.github/workflows/tools_build.yml
+++ b/.github/workflows/tools_build.yml
@@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
# the result of the matrix will be the combination of all attributes, so we get os*compiler builds
- os: [ubuntu-20.04]
+ os: [ubuntu-24.04]
compiler: [clang]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }}-${{ matrix.compiler }}