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

37 lines
670 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:
2023-04-03 10:47:08 +00:00
- "dsda-doom"
steps:
- uses: actions/checkout@v3
2023-03-25 10:54:50 +00:00
- name: Build target
2023-03-25 10:36:23 +00:00
run: |
2023-03-25 10:54:50 +00:00
./build.py --target ${{ matrix.target }}
2023-04-03 10:34:47 +00:00
- name: Generate Xcode project
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 .
...