Skip to content

Commit

Permalink
chore: Bumping Xcode and SauceLab CLI for benchmarking (#4397)
Browse files Browse the repository at this point in the history
Our benchmarking workflows still uses Xcode 14 that does not work with mergeable-libraries.
  • Loading branch information
brustolin authored Oct 3, 2024
1 parent a353899 commit 46970f1
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/benchmarking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- run: ./scripts/ci-select-xcode.sh 15.2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- uses: actions/download-artifact@v4
with:
name: DerivedData-Xcode
- run: npm install -g saucectl@0.173.2
- run: npm install -g saucectl@0.186.0
- name: Run Benchmarks in SauceLab
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
Expand All @@ -100,11 +100,11 @@ jobs:

app-metrics:
name: Collect app metrics
runs-on: macos-13
runs-on: macos-13-xlarge
steps:
- name: Git checkout
uses: actions/checkout@v4
- run: ./scripts/ci-select-xcode.sh
- run: ./scripts/ci-select-xcode.sh 15.2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
Expand All @@ -126,6 +126,15 @@ jobs:
MATCH_USERNAME: ${{ secrets.MATCH_USERNAME }}
- name: Build Framework
run: make build-xcframework

- name: Archive build log if failed
uses: actions/upload-artifact@v4
if: ${{ failure() || cancelled() }}
with:
name: raw-build-output-build-xcframework
path: |
build-xcframework.log
- name: Build test app with sentry
run: bundle exec fastlane build_perf_test_app_sentry
env:
Expand Down

0 comments on commit 46970f1

Please sign in to comment.