mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 01:08:35 +00:00
feat(CI): add support for GCC (#3314)
Co-authored-by: Viste <viste02@gmail.com>
This commit is contained in:
16
.github/workflows/core_build.yml
vendored
16
.github/workflows/core_build.yml
vendored
@@ -13,12 +13,24 @@ jobs:
|
||||
matrix:
|
||||
# the result of the matrix will be the combination of all attributes, so we get os*compiler*modules builds
|
||||
os: [ubuntu-20.04]
|
||||
compiler: [clang6, clang9, clang10]
|
||||
compiler: [clang]
|
||||
modules: [with, without]
|
||||
# we can include specific combinations here
|
||||
include:
|
||||
- os: ubuntu-20.04
|
||||
compiler: clang9
|
||||
modules: without
|
||||
- os: ubuntu-18.04
|
||||
compiler: clang
|
||||
compiler: clang # default in 18.04 is clang 6
|
||||
modules: without
|
||||
- os: ubuntu-18.04
|
||||
compiler: gcc # default in 18.04 is gcc 7
|
||||
modules: without
|
||||
- os: ubuntu-20.04
|
||||
compiler: gcc # default in 20.04 is gcc 9
|
||||
modules: without
|
||||
- os: ubuntu-20.04
|
||||
compiler: gcc10
|
||||
modules: without
|
||||
runs-on: ${{ matrix.os }}
|
||||
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.modules }}-modules
|
||||
|
||||
Reference in New Issue
Block a user