* Add job matrix generation scripts * Add working job matrix example pipeline and common matrix generation pipeline. * Update job matrix tests path * Parameterize matrix generation job path * Add global variable to override nuget security checks to sample matrix pipeline * Update readme matrix pipeline example to match sample file Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
29 lines
812 B
JSON
29 lines
812 B
JSON
{
|
|
"displayNames": {
|
|
"/p:UseProjectReferenceToAzureClients=true": "UseProjectRef"
|
|
},
|
|
"matrix": {
|
|
"Agent": {
|
|
"ubuntu-18.04": { "OSVmImage": "ubuntu-18.04", "Pool": "Azure Pipelines" },
|
|
"windows-2019": { "OSVmImage": "windows-2019", "Pool": "Azure Pipelines" },
|
|
"macOS-10.15": { "OSVmImage": "macOS-10.15", "Pool": "Azure Pipelines" }
|
|
},
|
|
"TestTargetFramework": [ "netcoreapp2.1", "net461", "net5.0" ]
|
|
},
|
|
"include": [
|
|
{
|
|
"Agent": {
|
|
"windows-2019": { "OSVmImage": "windows-2019", "Pool": "Azure Pipelines" }
|
|
},
|
|
"TestTargetFramework": [ "net461", "net5.0" ],
|
|
"AdditionalTestArguments": "/p:UseProjectReferenceToAzureClients=true"
|
|
}
|
|
],
|
|
"exclude": [
|
|
{
|
|
"OSVmImage": "MMS2019",
|
|
"framework": "netcoreapp2.1"
|
|
}
|
|
]
|
|
}
|