Skip to content

Commit

Permalink
try building ios instead of archiving in Prebundle
Browse files Browse the repository at this point in the history
target ios
  • Loading branch information
siddarthkay committed Mar 16, 2023
1 parent 5611f5a commit 2ac6010
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,11 @@ release-ios-pr: watchman-clean ##@build Build release for iOS PR release
$(MAKE) jsbundle-ios && \
xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusImPR -configuration Release -destination 'generic/platform=iOS' -UseModernBuildSystem=N clean archive

build-ios-pr: export TARGET := ios
xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusImPR -configuration Release -destination 'generic/platform=iOS' -UseModernBuildSystem=N clean build -verbose

build-ios: export TARGET := ios
xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration Release -destination 'generic/platform=iOS' -UseModernBuildSystem=N clean build -verbose

jsbundle-android: SHELL := /bin/sh
jsbundle-android: export TARGET := android
Expand Down
2 changes: 1 addition & 1 deletion ci/Jenkinsfile.ios
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pipeline {
}
stage('PreBundle') {
steps {
script { sh 'make release-ios-pr' }
script { sh 'make build-ios-pr' }
}
}
stage('Bundle') {
Expand Down

0 comments on commit 2ac6010

Please sign in to comment.