CI #428
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
paths-ignore: | |
- '.gitattributes' | |
- '.github/*' | |
- '.github/*_TEMPLATE/**' | |
- '.gitignore' | |
- '*.bat' | |
- '*.yml' | |
- '*.md' | |
- 'LICENSE*' | |
pull_request: | |
paths-ignore: | |
- '.gitattributes' | |
- '.github/*' | |
- '.github/*_TEMPLATE/**' | |
- '.gitignore' | |
- '*.bat' | |
- '*.yml' | |
- '*.md' | |
- 'LICENSE*' | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 1 * *' # Monthly | |
jobs: | |
build-windows: | |
name: Build (Windows, ${{ matrix.config.toolset }}, ${{ matrix.configuration }}) | |
runs-on: ${{ matrix.config.runs-on }} | |
env: | |
POWERSHELL_TELEMETRY_OPTOUT: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {runs-on: windows-2019, toolset: v141_xp} | |
- {runs-on: windows-2022, toolset: v143} | |
configuration: [Release, Debug] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: CMake generate | |
run: cmake -T ${{ matrix.config.toolset }} -A Win32 -B build | |
- name: Build | |
run: cmake --build build -j $env:NUMBER_OF_PROCESSORS --config ${{ matrix.configuration }} | |
- uses: actions/upload-artifact@v3 | |
if: matrix.config.toolset == 'v141_xp' | |
with: | |
name: openag-${{ runner.os }}-${{ matrix.configuration }} | |
path: build\${{ matrix.configuration }}\client.dll | |
if-no-files-found: error | |
build-linux-gcc: | |
name: Build (Linux, gcc-${{ matrix.gcc-ver }}, ${{ matrix.configuration }}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
gcc-ver: [9, 11] | |
configuration: [Release, Debug] | |
env: | |
CC: gcc-${{ matrix.gcc-ver }} | |
CXX: g++-${{ matrix.gcc-ver }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup | |
run: | | |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install -y g++-${{ matrix.gcc-ver }}-multilib libgl-dev ninja-build rapidjson-dev | |
- name: CMake generate | |
run: cmake -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -B build | |
- name: Build | |
working-directory: build | |
run: ninja | |
- uses: actions/upload-artifact@v3 | |
if: matrix.gcc-ver == '11' | |
with: | |
name: openag-${{ runner.os }}-${{ matrix.configuration }} | |
path: build/client.so | |
if-no-files-found: error | |
build-linux-clang: | |
name: Build (Linux, clang-${{ matrix.clang-ver }}, ${{ matrix.configuration }}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
clang-ver: ['6.0', 16] | |
configuration: [Release, Debug] | |
env: | |
CC: clang-${{ matrix.clang-ver }} | |
CXX: clang++-${{ matrix.clang-ver }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup | |
run: | | |
if [ ${{ matrix.clang-ver }} -eq 16 ]; then | |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - | |
sudo add-apt-repository 'deb https://apt.llvm.org/focal/ llvm-toolchain-focal-${{ matrix.clang-ver }} main' | |
fi | |
sudo apt-get update | |
sudo apt-get install -y clang-${{ matrix.clang-ver }} g++-multilib libgl-dev ninja-build rapidjson-dev | |
- name: CMake generate | |
run: cmake -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -B build | |
- name: Build | |
working-directory: build | |
run: ninja |