2020-12-26 10:04:37 +00:00
|
|
|
name: Build Targets
|
2020-02-16 11:00:25 +00:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2020-06-20 13:17:56 +00:00
|
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]')"
|
2020-02-16 11:00:25 +00:00
|
|
|
name: ${{ matrix.config.name }}
|
2020-06-01 07:03:31 +00:00
|
|
|
runs-on: "macos-latest"
|
2020-02-16 11:00:25 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
config:
|
|
|
|
- {
|
|
|
|
name: "GZDoom"
|
|
|
|
}
|
|
|
|
- {
|
|
|
|
name: "Raze"
|
|
|
|
}
|
2020-05-11 13:37:20 +00:00
|
|
|
- {
|
2020-11-23 13:27:59 +00:00
|
|
|
name: "PrBoom-Plus"
|
2020-05-11 13:37:20 +00:00
|
|
|
}
|
2020-02-16 11:00:25 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2020-12-31 09:29:40 +00:00
|
|
|
./build.py --target ${{ matrix.config.name }}
|
2020-02-16 11:00:25 +00:00
|
|
|
|
2020-11-23 13:27:59 +00:00
|
|
|
- name: List Build Directory
|
|
|
|
if: always()
|
2020-02-16 11:00:25 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2020-11-23 13:27:59 +00:00
|
|
|
git status
|
|
|
|
ls -lR .
|