no message #586
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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: | |
- dsda-doom | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate Xcode project | |
run: | | |
./build.py --target ${{ matrix.target }} --xcode | |
- name: Build target | |
run: | | |
./build.py --target ${{ matrix.target }} | |
- name: List Build Directory | |
if: always() | |
shell: bash | |
run: | | |
git status | |
ls -lR . | |
... |