-
Notifications
You must be signed in to change notification settings - Fork 5
/
azure-pipelines.yml
75 lines (69 loc) · 1.57 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
resources:
repositories:
- repository: Celestia
type: github
endpoint: GithubAuth
name: celestiamobile/Celestia
- repository: CelestiaCore
type: github
endpoint: GithubAuth
name: celestiamobile/CelestiaCore
- repository: CelestiaContent
type: github
endpoint: GithubAuth
name: CelestiaProject/CelestiaContent
- repository: CelestiaLocalization
type: github
endpoint: GithubAuth
name: celestiamobile/CelestiaLocalization
trigger:
branches:
include:
- releases/*
- main
- develop
stages:
- stage: Build_iOS
displayName: 'Build iOS'
jobs:
- template: jobs/build.yml
parameters:
sdk: iphoneos
signing: appStore
backend: openGL
- stage: Build_iOS_ANGLE
displayName: 'Build iOS (ANGLE)'
dependsOn: []
jobs:
- template: jobs/build.yml
parameters:
sdk: iphoneos
signing: appStore
backend: angle
- stage: Build_Catalyst_DeveloperID_ANGLE
displayName: 'Build Catalyst (Developer ID, ANGLE)'
dependsOn: []
jobs:
- template: jobs/build.yml
parameters:
sdk: macosx
signing: developerID
backend: angle
- stage: Build_Catalyst_DeveloperID_OpenGL
displayName: 'Build Catalyst (Developer ID, OpenGL)'
dependsOn: []
jobs:
- template: jobs/build.yml
parameters:
sdk: macosx
signing: developerID
backend: openGL
- stage: Build_Catalyst_App_Store
displayName: 'Build Catalyst (App Store)'
dependsOn: []
jobs:
- template: jobs/build.yml
parameters:
sdk: macosx
signing: appStore
backend: openGL