Commit 4491e2c 1 parent f238d53 commit 4491e2c Copy full SHA for 4491e2c
File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -194,3 +194,27 @@ jobs:
194
194
- task : PublishBuildArtifacts@1
195
195
inputs :
196
196
ArtifactName : ' publish'
197
+
198
+ - job : Build_iOS
199
+ pool :
200
+ vmImage : ' macOS-latest'
201
+
202
+ steps :
203
+ - script : |
204
+ brew install flutter cocoapods
205
+ displayName: 'Install tools'
206
+
207
+ - script : |
208
+ rustup target add aarch64-apple-ios aarch64-apple-ios-sim x86_64-apple-ios
209
+ cd tunet-flutter
210
+ flutter build ios --release --no-codesign
211
+ mkdir -p ipa/Payload
212
+ cp -r build/ios/iphoneos/Runner.app ./ipa/Payload
213
+ cd ipa
214
+ zip -r tunet.ios.ipa *
215
+ cp tunet.ios.ipa $(Build.ArtifactStagingDirectory)/
216
+ displayName: 'Build IPA'
217
+
218
+ - task : PublishBuildArtifacts@1
219
+ inputs :
220
+ ArtifactName : ' publish'
You can’t perform that action at this time.
0 commit comments