This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathazure-pipelines.yml
71 lines (60 loc) · 2.18 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
trigger:
- master
- dev/*
pool:
vmImage: 'macos-latest'
variables:
iOSRTCSDK: 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_iOS_v3_1_0_FULL.zip?_ga=2.213457044.1493357375.1597372715-269570672.1596526126'
MacRTCSDK: 'https://download.agora.io/sdk/release/Agora_Native_SDK_for_Mac_v3_1_0_FULL.zip?_ga=2.213457044.1493357375.1597372715-269570672.1596526126'
jobs:
- template: Android/build-template/build-android.yml
parameters:
project: 'Android'
module: 'sample-custom-recorder'
name: 'CustomRecorder'
- template: iOS&macOS/build-template/build-ios.yml
parameters:
displayName: 'AgoraRTCWithASMR'
workingDirectory: 'iOS&macOS/Agora-RTC-With-ASMR'
scheme: 'Agora-RTC-With-ASMR'
sdkurl: $(iOSRTCSDK)
- template: iOS&macOS/build-template/build-ios.yml
parameters:
displayName: 'AgoraRTCWithVoiceChangeriOS'
workingDirectory: 'iOS&macOS/Agora-RTC-With-Voice-Changer-iOS'
scheme: 'Agora-RTC-With-Voice-Changer-iOS'
sdkurl: $(iOSRTCSDK)
- template: iOS&macOS/build-template/build-ios.yml
parameters:
displayName: 'AgoraAudioIOiOS'
workingDirectory: 'iOS&macOS/AgoraAudioIO-Objective-C'
scheme: 'AgoraAudioIO-iOS'
sdkurl: $(iOSRTCSDK)
- template: iOS&macOS/build-template/build-mac.yml
parameters:
displayName: 'AgoraAudioIOmacOS'
workingDirectory: 'iOS&macOS/AgoraAudioIO-Objective-C'
scheme: 'AgoraAudioIO-macOS'
sdkurl: $(MacRTCSDK)
#- template: iOS&macOS/build-template/build-ios.yml
# parameters:
# displayName: 'PronunciationAssess'
# workingDirectory: 'iOS&macOS/Pronunciation-Assess-iOS'
# scheme: 'Pronunciation-Assess'
# sdkurl: $(iOSRTCSDK)
- template: iOS&macOS/build-template/build-ios.yml
parameters:
displayName: 'SpeechRecognizeriOS'
workingDirectory: 'iOS&macOS/SpeechRecognizer-iOS'
scheme: 'SpeechRecognizer-iOS'
sdkurl: $(iOSRTCSDK)
- template: Windows/cicd/templates/build-Windows-dshow.yml
parameters:
displayName: 'AgoraAudioIOWinows'
workingDirectory: 'Windows/AgoraAudioIO-Windows'
scheme: 'AgoraAudioIO-Windows'
sdkurl: $(WindowsRTCSDK)
solutionName: 'AgoraExternalCapture.sln'
sdkVersion: '3_1_0'
sdkFolderVersion: '3.1.0'
Machine: x86