mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
36 lines
675 B
YAML
36 lines
675 B
YAML
name: Build Targets
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
if: "${{ !contains(github.event.head_commit.message, '[skip build]') }}"
|
|
name: ${{ matrix.config.name }}
|
|
runs-on: "macos-10.15"
|
|
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 .
|