-
Notifications
You must be signed in to change notification settings - Fork 536
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ci] Add nightly build and test pipeline #5549
Merged
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
Adds support for installing and launching emulators with different API levels and architectures: msbuild /t:InstallAvdImage;AcquireAndroidTarget tests\Mono.Android-Tests\Mono.Android-Tests.csproj /p:TestAvdApiLevel=21
pjcollins
force-pushed
the
scheduled-build-test
branch
4 times, most recently
from
January 27, 2021 17:19
10d3a0d
to
5d3b681
Compare
pjcollins
force-pushed
the
scheduled-build-test
branch
from
January 27, 2021 21:46
d8d9335
to
29c702a
Compare
https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=4415170&view=results was triggered automatically by the latest temporary scheduling changes. I'll revert that commit and mark the PR ready assuming all current jobs run as expected. |
This reverts commit 29c702a.
grendello
approved these changes
Jan 28, 2021
jpobst
approved these changes
Jan 28, 2021
....Android.Tools.BootstrapTasks/Xamarin.Android.Tools.BootstrapTasks/WaitForAndroidEmulator.cs
Outdated
Show resolved
Hide resolved
jonathanpeppers
approved these changes
Jan 28, 2021
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.
Context: #5098
A new
azure-pipelines-nightly.yaml
build pipeline file has been addedto run our longer running build and test tasks that we don't want to run
against every commit or PR build. This new pipeline is scheduled to run
every day at 3:00am UTC. The pipeline will only run if there have been
source code changes since the last successful scheduled run. For more
information see the scheduled triggers documentation.
This new nightly pipeline starts with a commercial build on macOS, which
provides an opportunity to run time consuming Roslyn analyzers. Other
code analysis steps can be added to this nightly build in the future.
After the build completes, the artifacts that are produced will be used
by new supplemental test jobs. Five new emulator test environments
have been added to this nightly pipeline which will allow us to run
tests on a broader set of Android versions. The following emulators are
now available for testing:
These new test jobs currently only run the default configuration of the
Mono.Android-Tests suite against our legacy installers. It should be
easy to extend these jobs to run additional tests as needed.
Some clean up has also been applied to the main
azure-pipelines.yaml
file. Usage of
XA.Commercial.Build
has been removed, as any buildsusing this file will always be "commercial". Additionally, the test
environment update from commit 75317db allows us to remove a
supplemental mono installation step as a newer mono is available on
these machines.