@@ -5,7 +5,7 @@ project_type: other
5
5
meta :
6
6
bitrise.io :
7
7
stack : osx-xcode-16.2.x
8
- machine_type_id : g2-m1.4core
8
+ machine_type_id : g2.mac.medium
9
9
trigger_map :
10
10
- push_branch : main
11
11
pipeline : PIPELINE-P256K-ZKP
@@ -86,7 +86,7 @@ workflows:
86
86
87
87
# 1. Generate Xcode project:
88
88
# The command generates an Xcode project using Tuist for the project configuration located in the 'Projects/' directory.
89
- swift package --disable-sandbox tuist generate -p Projects/ && \
89
+ swift package --disable-sandbox tuist generate -p Projects/ --no-open && \
90
90
91
91
# 2. Build iOS target:
92
92
# Builds the 'P256K' target for the iOS platform using the Tuist project configuration from 'Projects/'.
@@ -97,7 +97,7 @@ workflows:
97
97
swift package --disable-sandbox tuist test XCFramework-Workspace -p Projects/ --platform ios
98
98
- script :
99
99
title : ARCHIVE & CREATE XCFRAMEWORK
100
- timeout : 360
100
+ timeout : 720
101
101
inputs :
102
102
- content : |-
103
103
#!/usr/bin/env bash
@@ -149,18 +149,19 @@ workflows:
149
149
# Each -archive parameter specifies a path to a .xcarchive built for a different platform
150
150
# -framework specifies the framework within those archives to include in the XCFramework
151
151
# The -output parameter specifies the name and location of the XCFramework to be created
152
- xcodebuild -create-xcframework
153
- -archive Archives/P256K-iOS.xcarchive -framework P256K.framework
154
- -archive Archives/P256K-iOS_Simulator .xcarchive -framework P256K.framework
155
- -archive Archives/P256K-macOS.xcarchive -framework P256K.framework
156
- -archive Archives/P256K-tvOS.xcarchive -framework P256K.framework
157
- -archive Archives/P256K-tvOS_Simulator .xcarchive -framework P256K.framework
158
- -archive Archives/P256K-watchOS.xcarchive -framework P256K.framework
159
- -archive Archives/P256K-watchOS_Simulator .xcarchive -framework P256K.framework
152
+ xcodebuild -create-xcframework \
153
+ -archive " Archives/P256K-iOS.xcarchive" -framework P256K.framework \
154
+ -archive " Archives/P256K-iOS Simulator .xcarchive" -framework P256K.framework \
155
+ -archive " Archives/P256K-macOS.xcarchive" -framework P256K.framework \
156
+ -archive " Archives/P256K-tvOS.xcarchive" -framework P256K.framework \
157
+ -archive " Archives/P256K-tvOS Simulator .xcarchive" -framework P256K.framework \
158
+ -archive " Archives/P256K-watchOS.xcarchive" -framework P256K.framework \
159
+ -archive " Archives/P256K-watchOS Simulator .xcarchive" -framework P256K.framework \
160
160
-output P256K.xcframework
161
161
- deploy-to-bitrise-io :
162
162
inputs :
163
163
- deploy_path : " $BITRISE_SOURCE_DIR/P256K.xcframework"
164
+ - is_compress : true
164
165
PULL-PACKAGE-FILES :
165
166
steps :
166
167
- pull-intermediate-files :
0 commit comments