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

39 lines
709 B
YAML
Raw Normal View History

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