Fix for wad
command
#36
Workflow file for this run
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: macOS | |
on: [push, pull_request] | |
jobs: | |
pre_job: | |
name: Build Preparation | |
runs-on: ubuntu-latest | |
outputs: | |
should_skip: ${{ steps.check_skip.outputs.should_skip }} | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Check for build skip | |
id: check_skip | |
run: bash ci/check-skip.sh | |
build: | |
name: Build | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
runs-on: macos-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Prepare build | |
run: bash ci/macos-buildgen.sh | |
- name: Run build | |
run: cmake --build ./build/ |