zdoom-macos-deps/.github/workflows/build.yml
alexey.lysiuk bd1fd02a38 cmake
2022-12-31 10:24:30 +02:00

43 lines
839 B
YAML

---
name: Build Targets
on: [push, pull_request]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip build]')"
name: ${{ matrix.target }} / ${{ matrix.flavor.name }}
runs-on: macos-12
strategy:
fail-fast: false
matrix:
target: [
GZDoom,
Raze,
# PrBoom-Plus
]
flavor: [
{
name: Make,
args: '--quasi-glib'
},
# {
# name: Xcode,
# args: '--xcode'
# }
]
steps:
- uses: actions/checkout@v3
- name: Build
run: |
./build.py --target ${{ matrix.target }} ${{ matrix.flavor.args }}
- name: List Build Directory
if: always()
shell: bash
run: |
git status
ls -lR .
...