2022-07-02 08:01:25 +00:00
|
|
|
---
|
2020-12-26 10:04:37 +00:00
|
|
|
name: Build Targets
|
2020-02-16 11:00:25 +00:00
|
|
|
|
2023-02-04 11:35:16 +00:00
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2020-02-16 11:00:25 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-07-02 08:02:25 +00:00
|
|
|
if: "!contains(github.event.head_commit.message, '[skip build]')"
|
2023-01-10 14:41:38 +00:00
|
|
|
name: ${{ matrix.target }}
|
2022-07-02 08:02:25 +00:00
|
|
|
runs-on: macos-12
|
2020-02-16 11:00:25 +00:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2023-02-04 11:35:16 +00:00
|
|
|
target:
|
2023-04-03 10:49:16 +00:00
|
|
|
- dsda-doom
|
2020-02-16 11:00:25 +00:00
|
|
|
|
|
|
|
steps:
|
2022-07-02 08:02:04 +00:00
|
|
|
- uses: actions/checkout@v3
|
2020-02-16 11:00:25 +00:00
|
|
|
|
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
|
2023-01-10 14:41:38 +00:00
|
|
|
|
2023-04-03 10:49:16 +00:00
|
|
|
- name: List Build Directory
|
|
|
|
if: always()
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
git status
|
|
|
|
ls -lR .
|
2022-07-02 08:01:25 +00:00
|
|
|
...
|