diff options
author | Sven Boemer <sbomer@gmail.com> | 2018-11-08 08:50:37 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 08:50:37 -0800 |
commit | 8bc5616def9074d8457f85d22b1280493ad731ad (patch) | |
tree | 059d9a50f34f73924a3d168853d9ce10c39a313a /NuGet.Config | |
parent | f6e7568cc6d4901abb5e11ebc05267743a1c5205 (diff) | |
download | coreclr-8bc5616def9074d8457f85d22b1280493ad731ad.tar.gz coreclr-8bc5616def9074d8457f85d22b1280493ad731ad.tar.bz2 coreclr-8bc5616def9074d8457f85d22b1280493ad731ad.zip |
Add azure-pipelines build and test definitions (#20840)
This adds an azure pipeline definition with a matrix of product and test builds, using helix to run tests. The intention is that this definition will eventually be used for both our official build and CI testing.
There is one build job for each OS/platform/arch, and one test job for each OS/platform/arch/priority/R2Rflag. The test job builds tests and then submits them to helix, passing along a number of test run modes. One helix test job will be created for each OS/platform/arch/priority/R2Rflag/helixtargetqueue/testscenario.
There is a lot of work left to be done to get this up to parity with our official builds and CI, which I've tried to call out in comments.
Diffstat (limited to 'NuGet.Config')
-rw-r--r-- | NuGet.Config | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/NuGet.Config b/NuGet.Config new file mode 100644 index 0000000000..7fa789a1df --- /dev/null +++ b/NuGet.Config @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8"?> +<configuration> + <packageSources> + <clear /> + <add key="arcade" value="https://dotnetfeed.blob.core.windows.net/dotnet-tools-internal/index.json" /> + <add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" /> + <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> + </packageSources> +</configuration>
\ No newline at end of file |