forked from nventive/UnoApplicationTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.azure-pipelines-canary.yml
46 lines (41 loc) · 1.75 KB
/
.azure-pipelines-canary.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
trigger: # Start a new run as soon as a "canaries/build/(...)" branch is created.
branches:
include:
- canaries/build/*
variables:
- template: build/variables.yml
# Build the project using the desired parameters (in this case same as staging), but update all nuget packages to latest.
stages:
- stage: Build_Canary
condition: and(ne(variables['IsLightBuild'], 'true'), eq(variables['IsCanary'], 'true'))
dependsOn: []
jobs:
- template: build/stage-build.yml
parameters:
applicationEnvironment: Staging
androidKeyStoreFile: $(InternalKeystore)
androidVariableGroup: 'ApplicationTemplate.Distribution.Internal.Android'
iosProvisioningProfileFile: $(InternalProvisioningProfile)
iosCertificateFile: $(InternalCertificate)
iosVariableGroup: 'ApplicationTemplate.Distribution.Internal.iOS'
removeHyperlinksFromReleaseNotes: true
BannerVersionNameText: "CANARY"
- stage: AppCenter_TestFlight_Canary
condition: and(succeeded(), eq(variables['IsCanary'], 'true'))
dependsOn: Build_Canary
jobs:
- template: build/stage-release-appcenter.yml
parameters:
applicationEnvironment: Staging
deploymentEnvironment: AppCenter
appCenterWindowsSlug: $(AppCenterWindowsSlug_Canary)
appCenteriOSSlug: $(AppCenteriOSSlug_Canary)
appCenterAndroidSlug: $(AppCenterAndroidSlug_Canary)
androidKeyStoreFile: $(InternalKeystore)
androidVariableGroup: 'ApplicationTemplate.Distribution.Internal.Android'
appCenterServiceConnectionName: $(AppCenterCanaryServiceConnection)
appCenterDistributionGroup: $(AppCenterCanaryDistributionGroup)
- template: build/stage-release-appstore.yml
parameters:
applicationEnvironment: Staging
deploymentEnvironment: TestFlight