-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f37c1c0
commit 1de01e9
Showing
1 changed file
with
12 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,16 @@ jobs: | |
run: | | ||
brew install [email protected] | ||
- name: Install xcbeautify | ||
run: | | ||
brew update | ||
brew install xcbeautify | ||
- name: Install protobuf | ||
run: | | ||
brew update | ||
brew install protobuf | ||
- name: Set up yeetd to workaround XCode being slow in CI | ||
run: | | ||
wget https://github.com/biscuitehh/yeetd/releases/download/1.0/yeetd-normal.pkg | ||
|
@@ -85,7 +95,8 @@ jobs: | |
with: | ||
xcode-version: '15.0.1' | ||
- name: Configure Rust | ||
# In the https://github.com/actions/runner-images/releases/tag/macos-13-arm64%2F20240721.1 release, Github changed where rustup was installed | ||
# In the https://github.com/actions/runner-images/releases/tag/macos-13-arm64%2F20240721.1 release | ||
# Github changed where rustup was installed | ||
# This update broke our build script which was assuming the cargo binary was located in ~/.cargo/bin/cargo | ||
# The workaround is to fix brew paths by running brew bundle | ||
run: | | ||
|
@@ -107,16 +118,6 @@ jobs: | |
cp Api.xcconfig.template Api.xcconfig | ||
working-directory: ios/Configurations | ||
|
||
- name: Install xcbeautify | ||
run: | | ||
brew update | ||
brew install xcbeautify | ||
- name: Install protobuf | ||
run: | | ||
brew update | ||
brew install protobuf | ||
- name: Run unit tests | ||
run: | | ||
set -o pipefail && env NSUnbufferedIO=YES xcodebuild \ | ||
|