This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT License. | ||
|
||
# MixedReality-WebRTC build pipeline for Android CI | ||
|
||
# Trigger CI on push changes | ||
trigger: | ||
batch: true # Android build is very slow (>1 hour) so batch changes | ||
branches: | ||
include: | ||
- master | ||
- release/* | ||
exclude: | ||
- docs/* | ||
|
||
# Do not trigger CI on PRs | ||
pr: none | ||
|
||
# Give a unique name to the build each time it runs | ||
name: ci-android-$(SourceBranchName)-$(Date:yyyyMMdd)-$(Rev:r) | ||
|
||
parameters: | ||
- name: clean | ||
displayName: 'Clean build' | ||
type: boolean | ||
default: true | ||
|
||
stages: | ||
|
||
# Compile mrwebrtc | ||
- stage: build | ||
displayName: 'Build mrwebrtc' | ||
jobs: | ||
|
||
# Build mrwebrtc.aar for Android | ||
- template: templates/jobs-libwebrtc-android.yaml | ||
parameters: | ||
buildConfig: 'Debug' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters