zdoom-macos-deps/.github/workflows/build.yml
alexey.lysiuk 3eb23be590 wip
[skip test]
2023-03-25 12:27:16 +02:00

36 lines
669 B
YAML

---
name: Build Targets
on:
- push
- pull_request
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip build]')"
name: ${{ matrix.target }}
runs-on: macos-12
strategy:
fail-fast: false
matrix:
target:
- glib
steps:
- uses: actions/checkout@v3
- 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 .
...