-
Notifications
You must be signed in to change notification settings - Fork 287
/
azure-pipelines.yml
87 lines (78 loc) · 2.67 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
# Android
# Build your Android project with Gradle.
# Add steps that test, sign, and distribute the APK, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/android
trigger:
- master
- dev/*
variables:
iOSRTCSDK: 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_iOS_v3_1_0_FULL.zip?_ga=2.47462311.1493357375.1597372715-269570672.1596526126'
MacRTCSDK: 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_Mac_v3_1_0_FULL.zip?_ga=2.47462311.1493357375.1597372715-269570672.1596526126'
WindowsRTCSDK: 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_Windows_v3_1_0_FULL.zip?_ga=2.54261672.1493357375.1597372715-269570672.1596526126'
jobs:
- template: 'OpenLive-Android/open-live-template.yml'
parameters:
project: 'OpenLive-Android'
name: 'OpenLive_Android'
- template: cicd/templates/build-ios.yml
parameters:
displayName: 'iOSSwiftOpenLive'
workingDirectory: 'OpenLive-iOS'
scheme: 'OpenLive'
sdkurl: $(iOSRTCSDK)
- template: cicd/templates/build-ios.yml
parameters:
displayName: 'iOSOCOpenLive'
workingDirectory: 'OpenLive-iOS-Objective-C'
scheme: 'OpenLive'
sdkurl: $(iOSRTCSDK)
- template: cicd/templates/build-mac.yml
parameters:
displayName: 'MacSwiftOpenLive'
workingDirectory: 'OpenLive-macOS'
scheme: 'OpenLive'
sdkurl: $(MacRTCSDK)
- template: cicd/templates/build-mac.yml
parameters:
displayName: 'MacOCOpenLive'
workingDirectory: 'OpenLive-macOS-Objective-C'
scheme: 'OpenLive'
sdkurl: $(MacRTCSDK)
#Windows MFC demo
- template: cicd/templates/build-Windows.yml
parameters:
displayName: 'WindowsOpenLiveMFC'
workingDirectory: 'OpenLive-Windows-MFC'
scheme: 'OpenLive-Windows-MFC'
sdkurl: $(WindowsRTCSDK)
solutionName: 'OpenLive.sln'
Machine: 'win32'
architecture: 'x86'
ReleasePath: 'Release'
- template: cicd/templates/build-Windows.yml
parameters:
displayName: 'WindowsOpenLiveMFC64'
workingDirectory: 'OpenLive-Windows-MFC'
scheme: 'OpenLive-Windows-MFC'
sdkurl: $(WindowsRTCSDK)
solutionName: 'OpenLive.sln'
Machine: 'x64'
architecture: 'x64'
ReleasePath: 'x64/Release'
#Windows QT
- template: cicd/templates/build-Windows-qt.yml
parameters:
displayName: 'WindowsOpenLive'
workingDirectory: 'OpenLive-Windows'
scheme: 'OpenLive-Windows'
sdkurl: $(WindowsRTCSDK)
architecture: 'x86'
ReleasePath: 'Release'
- template: cicd/templates/build-Windows-qt.yml
parameters:
displayName: 'WindowsOpenLive64'
workingDirectory: 'OpenLive-Windows'
scheme: 'OpenLive-Windows'
sdkurl: $(WindowsRTCSDK)
architecture: 'x64'
ReleasePath: 'Release'