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

37 lines
666 B
YAML
Raw Normal View History

2020-12-26 10:04:37 +00:00
name: Build Targets
on: [push, pull_request]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
name: ${{ matrix.config.name }}
runs-on: "macos-latest"
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 .