Add GitHub Actions CI

This commit is contained in:
Christoph Neidahl 2021-10-29 22:31:37 +02:00 committed by OPNA2608
parent f2baa96968
commit 9ec803b42f

52
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,52 @@
name: CI
on: [ push, pull_request ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
defaults:
run:
shell: bash
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
# - name: Dependencies [macOS]
# if: runner.os == 'macOS'
# run: |
# export HOMEBREW_NO_INSTALL_CLEANUP=1
# brew update
# brew install sdl2
- name: Dependencies [Ubuntu]
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install libsdl2-dev
- name: Configure
run: |
cmake \
-B ${GITHUB_WORKSPACE}/build \
-DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: |
cmake \
--build ${GITHUB_WORKSPACE}/build \
--config ${{env.BUILD_TYPE}} \
--parallel 2