mirror of
https://github.com/ZDoom/acc.git
synced 2024-11-21 19:41:32 +00:00
- added continuous integration based on GitHub Workflow
This commit is contained in:
parent
24f1576244
commit
b40456a3be
1 changed files with 50 additions and 0 deletions
50
.github/workflows/continuous_integration.yml
vendored
Normal file
50
.github/workflows/continuous_integration.yml
vendored
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
name: Continuous Integration
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: ${{ matrix.config.name }} | ${{ matrix.build_type }}
|
||||||
|
runs-on: ${{ matrix.config.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
config:
|
||||||
|
- {
|
||||||
|
name: "Visual Studio 64-bit",
|
||||||
|
os: windows-latest,
|
||||||
|
extra_options: "-A x64"
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: "Visual Studio 32-bit",
|
||||||
|
os: windows-latest,
|
||||||
|
extra_options: "-A Win32"
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: "macOS",
|
||||||
|
os: macos-latest
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: "Linux GCC",
|
||||||
|
os: ubuntu-latest
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
name: "Linux Clang",
|
||||||
|
os: ubuntu-latest,
|
||||||
|
extra_options: "-DCMAKE_C_COMPILER=/usr/bin/clang -DCMAKE_CXX_COMPILER=/usr/bin/clang++"
|
||||||
|
}
|
||||||
|
build_type: ["Release", "Debug"]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Configure
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ${{ matrix.config.extra_options }} .
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
export MAKEFLAGS=--keep-going
|
||||||
|
cmake --build build --config ${{ matrix.build_type }} --parallel 3
|
Loading…
Reference in a new issue