Skip to content

Commit

Permalink
fix(bb): publishing bb for mac intel (AztecProtocol#4523)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludamad committed Feb 9, 2024
1 parent dcc9ba4 commit 4982e3c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/publish-bb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,15 @@ jobs:
ref: ${{ inputs.tag || env.GITHUB_REF }}

- name: Create Mac Build Environment
run: brew install cmake ninja
run: brew install cmake ninja llvm@16

- name: Compile Barretenberg
working-directory: barretenberg/cpp
run: |
cmake --preset default -DCMAKE_BUILD_TYPE=RelWithAssert
export PATH="/usr/local/opt/llvm@16/bin:$PATH"
export LDFLAGS="-L/usr/local/opt/llvm@16/lib"
export CPPFLAGS="-I/usr/local/opt/llvm@16/include"
cmake -DCMAKE_BUILD_TYPE=RelWithAssert --preset default
cmake --build --preset default --target bb
- name: Package barretenberg artifact
Expand Down

0 comments on commit 4982e3c

Please sign in to comment.