Skip to content

Commit 1170023

Browse files
committed
Fix CI
1 parent 9c22cc4 commit 1170023

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
1818
runs-on: macOS-26
1919
env:
20-
DEVELOPER_DIR: "/Applications/Xcode_26.1.app/Contents/Developer"
20+
DEVELOPER_DIR: "/Applications/Xcode_26.2.app/Contents/Developer"
2121
steps:
2222
- uses: actions/checkout@v6
2323
with:

.github/workflows/ci.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Lint & Format Check
2525
runs-on: macOS-26
2626
env:
27-
DEVELOPER_DIR: "/Applications/Xcode_26.1.app/Contents/Developer"
27+
DEVELOPER_DIR: "/Applications/Xcode_26.2.app/Contents/Developer"
2828
steps:
2929
- name: Checkout
3030
uses: actions/checkout@v6
@@ -54,15 +54,8 @@ jobs:
5454
- uses: actions/checkout@v4
5555
- name: Swift Version
5656
run: xcrun swift --version
57-
- name: Install xcbeautify
58-
run: brew install xcbeautify --quiet
57+
- name: Brew install tools
58+
run: brew install xcbeautify jemalloc --quiet
5959
- name: Run Tests
6060
run: |
61-
set -o pipefail && \
62-
xcodebuild test \
63-
-scheme BinaryParseKit \
64-
-destination 'platform=macOS' \
65-
-skipMacroValidation | xcbeautify --renderer github-actions
66-
67-
# https://github.com/swiftlang/swift-package-manager/issues/9163
68-
# set -o pipefail && xcrun swift test -c debug --enable-code-coverage --xunit-output $TEST_RESULTS_DIR/xunit.xml 2>&1 | xcbeautify --renderer github-actions
61+
set -o pipefail && xcrun swift test --enable-experimental-prebuilts | xcbeautify --renderer github-actions

.github/workflows/deploy-docc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build DocC Documentation
1616
runs-on: macOS-26
1717
env:
18-
DEVELOPER_DIR: "/Applications/Xcode_26.1.app/Contents/Developer"
18+
DEVELOPER_DIR: "/Applications/Xcode_26.2.app/Contents/Developer"
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v6

0 commit comments

Comments
 (0)