From 44c32dc4ff996f2d9fd1086fcd083a17955ee0ff Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Mon, 17 Jul 2023 12:36:06 -0700 Subject: [PATCH] Select Xcode 14.3.1 on CI This is required for matching the DemangleNodes.def file --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58a385f..f45ec02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,11 +10,13 @@ jobs: runs-on: macos-13 steps: - uses: actions/checkout@v3 + - run: sudo xcode-select -s '/Applications/Xcode_14.3.1.app/Contents/Developer' - run: bazelisk build //... - run: bazelisk test //... test-swiftpm: runs-on: macos-13 steps: - uses: actions/checkout@v3 + - run: sudo xcode-select -s '/Applications/Xcode_14.3.1.app/Contents/Developer' - run: swift build - run: swift test