Skip to content

Cpn unfolding - fix 2081147 #24

Cpn unfolding - fix 2081147

Cpn unfolding - fix 2081147 #24

Workflow file for this run

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:
if: github.event.pull_request.draft == false
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- name: Install Packages
run: |
brew install flex bison autoconf automake libtool
echo 'export PATH="/opt/homebrew/opt/bison/bin:$PATH"' >> /Users/runner/.bash_profile
echo 'export PATH="/opt/homebrew/opt/flex/bin:$PATH"' >> /Users/runner/.bash_profile
- name: Build
uses: lukka/[email protected]
with:
cmakeListsOrSettingsJson: CMakeListsTxtAdvanced
cmakeAppendedArgs: >-
-DVERIFYPN_Static=ON
-DVERIFYPN_MC_Simplification=OFF
-DBISON_EXECUTABLE=/opt/homebrew/opt/bison/bin/bison
-DFLEX_EXECUTABLE=/opt/homebrew/opt/flex/bin/flex
cmakeBuildType: Release
cmakeGenerator: UnixMakefiles
buildDirectory: '${{runner.workspace}}/build'
env:
CC: gcc-14
CXX: g++-14
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: verifypn-arm64
path: '${{runner.workspace}}/build/verifypn/bin/verifypn-osx64'