File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Starter pipeline
2
+ # Start with a minimal pipeline that you can customize to build and deploy your code.
3
+ # Add steps that build, run tests, deploy, and more:
4
+ # https://aka.ms/yaml
5
+
6
+ trigger :
7
+ - master
8
+
9
+ pool :
10
+ vmImage : ' macos-10.14'
11
+
12
+ variables :
13
+ # - group: ios-pipeline
14
+ - name : configuration
15
+ value : ' Release'
16
+ - name : sdk
17
+ value : ' iphoneos'
18
+
19
+ steps :
20
+ - task : CocoaPods@0
21
+ inputs :
22
+ forceRepoUpdate : false
23
+
24
+ - task : Xcode@5
25
+ inputs :
26
+ actions : ' build'
27
+ scheme : ' iOSPipeline'
28
+ sdk : ' $(sdk)'
29
+ configuration : ' $(configuration)'
30
+ xcWorkspacePath : ' **/iOSPipeline.xcworkspace'
31
+ xcodeVersion : ' default'
32
+ packageApp : true
33
+ # signingOption: 'manual'
34
+ # signingIdentity: '$(APPLE_CERTIFICATE_SIGNING_IDENTITY)'
35
+ # provisioningProfileUuid: '$(APPLE_PROV_PROFILE_UUID)'
36
+
37
+ # - script: echo Hello, world!
38
+ # displayName: 'Run a one-line script'
39
+
40
+ # - script: |
41
+ # echo Add other tasks to build, test, and deploy your project.
42
+ # echo See https://aka.ms/yaml
43
+ # displayName: 'Run a multi-line script'
You can’t perform that action at this time.
0 commit comments