-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure-pipelines.yml
102 lines (90 loc) · 2.92 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
variables:
# When Agent.JobName matches this value (and the git ref is a tag), then
# built artifacts will be published to Azure Blob Storage.
- name: "AzurePublishWhen"
value: "Monterey-Xcode-13.3.1"
- name: "RunTestCloudTestsWhen"
value: "Monterey-Xcode-13.3.1"
- name: EOCompliance-Mac
value: true
trigger:
tags:
include:
- '*'
branches:
include:
- master
pr:
branches:
include:
- master
schedules:
- cron: "0 23 * * Mon-Fri"
displayName: Nightly build
branches:
include:
- master
always: true
jobs:
- job:
strategy:
matrix:
BigSur-Xcode-13.2:
IMAGE_POOL: 'macOS-11'
XCODE_VERSION: '13.2'
Monterey-Xcode-13.3.1:
IMAGE_POOL: 'macOS-12'
XCODE_VERSION: '13.3.1'
timeoutInMinutes: 180
pool:
vmImage: $(IMAGE_POOL)
variables:
- group: XTCRunTimeArtifactsCI
steps:
- script: |
set -e
sudo xcode-select --switch "/Applications/Xcode_$(XCODE_VERSION).app/Contents/Developer"
echo "Xcode version: $(xcrun xcodebuild -version)"
echo "Xcode path: $(xcrun -f xcodebuild)"
echo "Xcode select path: $(xcode-select --print-path)"
displayName: "Select Xcode $(XCODE_VERSION)"
- script: |
set -e
ruby -v
echo -e "install: --no-document --env-shebang\nupdate: --no-document --env-shebang" > ~/.gemrc
gem install bundler -v 2.3.18
bundle _2.3.18_ install
displayName: "Prepare Ruby Environment"
- script: |
set -e
[ -d "calabash-codesign" ] && rm -rf calabash-codesign
git clone https://$(CalabashKeychainGitHubAccessToken)@github.com/xamarinhq/calabash-codesign.git
calabash-codesign/apple/create-keychain.sh
displayName: "Download and install keychain"
- script: make app
displayName: "Make app"
- script: make ipa
displayName: "Make ipa"
#- script: bundle exec bin/ci/cucumber.rb
# displayName: "bin/ci/cucumber.rb"
- script: |
nuget restore $(Build.SourcesDirectory)/Permissions_UITest/Permissions_UITest/Permissions_UITest.sln
msbuild $(Build.SourcesDirectory)/Permissions_UITest/Permissions_UITest/Permissions_UITest.csproj
displayName: Build Permissions_UITest
- task: Bash@3
inputs:
targetType: filePath
filePath: "./bin/ci/az-publish.sh"
env:
AZURE_STORAGE_ACCOUNT: $(AzureStorageAccount)
AZURE_STORAGE_KEY: $(AzureStorageKey)
AZURE_STORAGE_CONNECTION_STRING: $(AzureStorageConnectionString)
SOURCE_BRANCH: $(Build.SourceBranch)
displayName: "Publish to Azure Blob Storage"
condition: and(succeeded(), eq(variables['Agent.JobName'], variables['RunTestCloudTestsWhen']), eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(variables['Build.Reason'], 'IndividualCI'))
- task: PublishTestResults@2
displayName: 'Publish Test Results'
inputs:
failTaskOnFailedTests: true
testResultsFiles: 'reports/junit/**/*.xml'
condition: always()