Skip to content

Commit 2068ca3

Browse files
committed
Xcode Cloud: post clone script
1 parent 5a450d9 commit 2068ca3

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

ios/ci_scripts/ci_post_clone.sh

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/zsh
2+
3+
echo "===== Installling CocoaPods ====="
4+
export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
5+
brew install cocoapods
6+
echo "===== Installing Node.js ====="
7+
brew install node@22
8+
brew link node@22
9+
echo "===== Installing yarn ====="
10+
brew install yarn
11+
12+
# Install dependencies
13+
echo "===== Running yarn install ====="
14+
yarn install
15+
echo "===== Running pod install ====="
16+
cd ios
17+
pod install

ios/zeus.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1822,7 +1822,7 @@
18221822
CODE_SIGN_ENTITLEMENTS = zeus/zeus.entitlements;
18231823
CODE_SIGN_IDENTITY = "Apple Development";
18241824
CODE_SIGN_STYLE = Automatic;
1825-
CURRENT_PROJECT_VERSION = 4;
1825+
CURRENT_PROJECT_VERSION = 1;
18261826
DEAD_CODE_STRIPPING = YES;
18271827
DEVELOPMENT_TEAM = 9TU7M3555F;
18281828
ENABLE_BITCODE = NO;
@@ -1868,7 +1868,7 @@
18681868
CODE_SIGN_ENTITLEMENTS = zeus/zeusRelease.entitlements;
18691869
CODE_SIGN_IDENTITY = "Apple Development";
18701870
CODE_SIGN_STYLE = Automatic;
1871-
CURRENT_PROJECT_VERSION = 4;
1871+
CURRENT_PROJECT_VERSION = 1;
18721872
DEAD_CODE_STRIPPING = YES;
18731873
DEVELOPMENT_TEAM = 9TU7M3555F;
18741874
ENABLE_BITCODE = NO;

0 commit comments

Comments
 (0)