Skip to content

Commit 02ed865

Browse files
committed
Set up CI with Azure Pipelines
[skip ci]
1 parent 593e7cc commit 02ed865

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

azure-pipelines.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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'

0 commit comments

Comments
 (0)