HyperLTL trace error - fix 2127914 #338
Workflow file for this run
This file contains hidden or 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 MacOS for ARM processor | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| types: [synchronize, opened, reopened, ready_for_review] | |
| workflow_dispatch: | |
| concurrency: | |
| group: build-MacOS-ARM-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v7.0.1 | |
| - name: Install dependencies | |
| run: | | |
| GCC_VERSION=$(sed -nE 's/^set\(DEFAULT_GCC_VERSION ([0-9]+)\)$/\1/p' CMakeLists.txt) | |
| [[ $GCC_VERSION =~ ^[0-9]+$ ]] | |
| brew install cmake flex bison ninja "gcc@${GCC_VERSION}" | |
| - name: Build Release | |
| run: | | |
| export PATH="$(brew --prefix bison)/bin:$(brew --prefix flex)/bin:$PATH" | |
| cmake --workflow release | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v7.0.1 | |
| with: | |
| name: verifypn-arm64 | |
| path: '${{github.workspace}}/build-release/verifypn/bin/verifypn-osx64' |