mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 03:51:33 +00:00
45 lines
844 B
YAML
45 lines
844 B
YAML
---
|
|
name: Build Targets
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.gitignore'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.gitignore'
|
|
|
|
jobs:
|
|
build:
|
|
if: "!contains(github.event.head_commit.message, '[skip build]')"
|
|
name: ${{ matrix.target }}
|
|
runs-on: macos-13
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- GZDoom
|
|
- Raze
|
|
- PrBoom-Plus
|
|
- quakespasm-exp
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Build target
|
|
run: |
|
|
./build.py --target ${{ matrix.target }}
|
|
|
|
- name: Generate Xcode project
|
|
run: |
|
|
./build.py --target ${{ matrix.target }} --xcode
|
|
|
|
- name: List Build Directory
|
|
if: always()
|
|
shell: bash
|
|
run: |
|
|
git status
|
|
ls -lR .
|
|
...
|