2022-01-05 13:28:14 +00:00
|
|
|
name: CI
|
2021-12-16 19:29:48 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
|
|
|
|
|
|
|
jobs:
|
2022-01-03 15:28:16 +00:00
|
|
|
build-and-test:
|
2022-01-05 09:06:34 +00:00
|
|
|
name: Build & Test (${{ matrix.os }})
|
|
|
|
runs-on: ${{ matrix.os }}
|
2022-10-30 20:06:05 +00:00
|
|
|
continue-on-error: true
|
2022-01-05 09:06:34 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-20 23:19:31 +00:00
|
|
|
os: [ windows-2022, ubuntu-22.04, macos-11 ]
|
2021-12-16 19:29:48 +00:00
|
|
|
|
|
|
|
steps:
|
2022-11-23 18:50:45 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-12-16 19:29:48 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2022-07-16 21:55:54 +00:00
|
|
|
- name: Add msbuild to PATH (Windows only)
|
2022-01-05 13:21:59 +00:00
|
|
|
if: ${{ matrix.os == 'windows-2022' }}
|
2022-01-05 09:06:34 +00:00
|
|
|
uses: microsoft/setup-msbuild@v1.1
|
|
|
|
with:
|
2022-01-05 13:29:24 +00:00
|
|
|
vs-version: '[17,18)'
|
2022-01-05 09:06:34 +00:00
|
|
|
msbuild-architecture: x64
|
2022-07-16 21:55:54 +00:00
|
|
|
- name: Install libssl (Mac Only)
|
|
|
|
if: ${{ matrix.os == 'macos-11' }}
|
|
|
|
run: brew install openssl@3
|
2022-01-03 15:30:29 +00:00
|
|
|
- name: cmake
|
2021-12-16 19:29:48 +00:00
|
|
|
uses: lukka/run-cmake@v10
|
|
|
|
with:
|
2022-01-05 09:06:34 +00:00
|
|
|
configurePreset: "ci-${{matrix.os}}"
|
|
|
|
buildPreset: "ci-${{matrix.os}}"
|
|
|
|
testPreset: "ci-${{matrix.os}}"
|
2021-12-16 19:29:48 +00:00
|
|
|
- name: artifacts
|
2022-11-23 18:50:45 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-12-16 19:29:48 +00:00
|
|
|
with:
|
2022-01-05 09:06:34 +00:00
|
|
|
name: build-${{matrix.os}}
|
2021-12-16 19:29:48 +00:00
|
|
|
path: |
|
2023-05-13 22:23:09 +00:00
|
|
|
build/*Server*
|
|
|
|
build/*.ini
|
|
|
|
build/*.so
|
|
|
|
build/*.dll
|
|
|
|
build/vanity/
|
|
|
|
build/navmeshes/
|
|
|
|
build/migrations/
|
|
|
|
build/*.dcf
|
|
|
|
!build/*.pdb
|
|
|
|
!build/d*/
|