mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-12 23:44:20 +00:00
36 lines
665 B
YAML
36 lines
665 B
YAML
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-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 .
|