deps: add highway 1.0.6 files #506
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 | |
- 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: | |
- GZDoom | |
- Raze | |
- PrBoom-Plus | |
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 . | |
... |