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
Add YAML-based public build pipelines #7
Merged
Conversation
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
Use a single unified YAML template for both webrtc.lib and the UWP wrappers, with the later only built on UWP. This simplify the template users since the UWP wrappers anyway always need to be built after webrtc.lib on UWP.
This allows sharing the script with multiple jobs, and including more comments and validation in the script file itself without bloating the job templates.
Change ci.yaml to only execute CI jobs, which means only compiling the C++ project for now, and move building of the core WebRTC into a new manually-triggered libwebrtc.yaml pipeline.
Azure pipeline parameters are replaced at compile time, and do not appear as environment variables. So pass them as arguments to the PowerShell script `mapVariables.ps1` instead of trying to read them from `$env`.
djee-ms
commented
Jun 24, 2019
djee-ms
commented
Jun 24, 2019
stephenatwork
approved these changes
Jun 25, 2019
This was referenced Feb 10, 2022
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add public build pipelines for the core implementation and the C++ and C# libraries:
mr-webrtc-core
builds the core Google implementation and UWP wrappers (manually triggered when needed).mr-webrtc-cpp-ci
builds the C++ library when a change is pushed to it.mr-webrtc-cs-ci
builds the C# library when a change is pushed to it.mr-webrtc-docs-ci
builds the documentation (user manual and API reference) when a change is pushed to thedocs/**
sub-tree or to any C# file, then commit the changes to thegh-pages
branch, a special branch that GitHub uses as sources for the online documentation https://microsoft.github.io/MixedReality-WebRTC (currently empty, and committing to the not-so-specialgh-pages-private
instead, until making the repository public).