Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch PR Checks to macos-14 free runner #959

Merged
merged 6 commits into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

name: Run unit tests (macOS)

runs-on: macos-14-xlarge
runs-on: macos-14
timeout-minutes: 30

outputs:
Expand Down Expand Up @@ -60,12 +60,11 @@ jobs:
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_$(<.xcode-version).app/Contents/Developer

- name: Install xcbeautify
continue-on-error: true
run: brew install xcbeautify
- name: Build BSK
run: set -o pipefail && swift build | tee build-log.txt | xcbeautify

- name: Run tests
run: set -o pipefail && swift test | tee build-log.txt | xcbeautify --report junit --report-path . --junit-report-filename tests.xml
run: set -o pipefail && swift test | tee -a build-log.txt | xcbeautify --report junit --report-path . --junit-report-filename tests.xml

- name: Publish Unit Tests Report
uses: mikepenz/action-junit-report@v3
Expand Down Expand Up @@ -109,7 +108,7 @@ jobs:

name: Run unit tests (iOS)

runs-on: macos-14-xlarge
runs-on: macos-14
timeout-minutes: 30

steps:
Expand Down
Loading