From 2f6e9bde6c9132cc1bc82d2e9df1515f5a3f44f8 Mon Sep 17 00:00:00 2001 From: ludamad Date: Tue, 26 Sep 2023 12:21:11 +0100 Subject: [PATCH] fix: try to fix publish-bb.yml (#2523) Speculative. The mac runner updated, making this exact path not work anymore. Try a wildcard. --- .github/workflows/publish-bb.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-bb.yml b/.github/workflows/publish-bb.yml index 5895d5ab9ca..0dae17c7bd5 100644 --- a/.github/workflows/publish-bb.yml +++ b/.github/workflows/publish-bb.yml @@ -150,13 +150,9 @@ jobs: uses: actions/checkout@v3 with: ref: ${{ inputs.tag || env.GITHUB_REF }} - # We need clang 14.0.3 or higher, as lower versions do not seem - # to be spec conformant. In particular std::span does not seem - # to follow the specifications. - # We need clang 15 because barretenberg uses concepts. - # clang 15 is the similar to Apple clang 14. + # We need clang 15+, as lower versions do not support our concept usage. - name: Select Xcode version - run: sudo xcode-select -switch /Applications/Xcode_14.3.1.app + run: sudo xcode-select -switch /Applications/Xcode_15* - name: Create Mac Build Environment run: brew install cmake ninja