Skip to content

Commit 9976707

Browse files
authored
1 parent f9724c7 commit 9976707

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/publish-bb.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,15 @@ jobs:
149149
ref: ${{ inputs.tag || env.GITHUB_REF }}
150150

151151
- name: Create Mac Build Environment
152-
run: brew install cmake ninja
152+
run: brew install cmake ninja llvm@16
153153

154154
- name: Compile Barretenberg
155155
working-directory: barretenberg/cpp
156156
run: |
157-
cmake --preset default -DCMAKE_BUILD_TYPE=RelWithAssert
157+
export PATH="/usr/local/opt/llvm@16/bin:$PATH"
158+
export LDFLAGS="-L/usr/local/opt/llvm@16/lib"
159+
export CPPFLAGS="-I/usr/local/opt/llvm@16/include"
160+
cmake -DCMAKE_BUILD_TYPE=RelWithAssert --preset default
158161
cmake --build --preset default --target bb
159162
160163
- name: Package barretenberg artifact

0 commit comments

Comments
 (0)