Skip to content

Commit

Permalink
Attempt to fix xcode cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
gruve-p committed May 22, 2023
1 parent 754bc0b commit 79fb0c3
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ios/ci_scripts/ci_post_clone.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/zsh

# fail if any command fails

echo "🧩 Stage: Post-clone is activated .... "

set -e
# debug log
set -x

# Install dependencies using Homebrew.
brew install node cocoapods

# Install node and pods dependencies.
ls && cd .. && npm install && npx pod-install

echo "🎯 Stage: Post-clone is done .... "

exit 0
9 changes: 9 additions & 0 deletions ios/ci_scripts/ci_post_xcodebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/zsh

echo "🧩 Stage: POST-Xcode Build is activated .... "

# You can add additional scripts here...

echo "🎯 Stage: POST-Xcode Build is DONE .... "

exit 0
9 changes: 9 additions & 0 deletions ios/ci_scripts/ci_pre_xcodebuild.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/zsh

echo "🧩 Stage: PRE-Xcode Build is activated .... "

# You can add additional scripts here...

echo "🎯 Stage: PRE-Xcode Build is DONE .... "

exit 0

0 comments on commit 79fb0c3

Please sign in to comment.