zdoom-macos-deps/.github/workflows/build.yml

37 lines
672 B
YAML
Raw Normal View History

2020-12-26 10:04:37 +00:00
name: Build Targets
on: [push, pull_request]
jobs:
build:
2021-08-14 10:03:02 +00:00
if: "${{ !contains(github.event.head_commit.message, '[skip build]') }}"
name: ${{ matrix.config.name }}
2021-11-22 07:42:15 +00:00
runs-on: "macos-11"
strategy:
fail-fast: false
matrix:
config:
- {
name: "GZDoom"
}
- {
name: "Raze"
}
- {
name: "PrBoom-Plus"
}
steps:
- uses: actions/checkout@v1
- name: Build
run: |
./build.py --target ${{ matrix.config.name }}
- name: List Build Directory
if: always()
shell: bash
run: |
git status
ls -lR .