mirror of
https://github.com/azerothcore/azerothcore-wotlk.git
synced 2025-12-15 14:50:44 -08:00
fix(CI): update build job to support multiple Ubuntu versions (#22413)
This commit is contained in:
parent
583c115660
commit
04547d90b3
2 changed files with 17 additions and 5 deletions
16
.github/workflows/dashboard-ci.yml
vendored
16
.github/workflows/dashboard-ci.yml
vendored
|
|
@ -26,7 +26,13 @@ env:
|
|||
jobs:
|
||||
test-bash-scripts:
|
||||
name: Test Bash Scripts
|
||||
runs-on: ubuntu-24.04
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
- os: ubuntu-24.04
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
@ -48,7 +54,13 @@ jobs:
|
|||
|
||||
build-and-test:
|
||||
name: Build and Integration Test
|
||||
runs-on: ubuntu-24.04
|
||||
strategy:
|
||||
fail-fast: true
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
- os: ubuntu-24.04
|
||||
runs-on: ${{ matrix.os }}
|
||||
if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue