Skip to content

Commit

Permalink
Use upper-case values for test agent values (Azure#27115)
Browse files Browse the repository at this point in the history
When running within the ADO pipeline, the env variable keys are converted to upper-case, which causes issues when running in a case-sensitive OS.

Using uppercase values prevents this issue.
  • Loading branch information
danielortega-msft authored Feb 19, 2022
1 parent d694076 commit c195225
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"OSVmImage": "MMSUbuntu20.04",
"Pool": "azsdk-pool-mms-ubuntu-2004-general",
"TestTargetFramework": "net6.0",
"AZURE_TEST_AGENT": "ubuntu_2004_net60",
"AZURE_TEST_AGENT": "UBUNTU_2004_NET60",
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "FALSE"
},

Expand All @@ -42,7 +42,7 @@
"OSVmImage": "macOS-10.15",
"Pool": "Azure Pipelines",
"TestTargetFramework": "net6.0",
"AZURE_TEST_AGENT": "macos_1015_net60",
"AZURE_TEST_AGENT": "MACOS_1015_NET60",
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "FALSE"
}
},
Expand All @@ -68,7 +68,7 @@
}
},
"SKIP_UPDATE_CAPABILITIES_LIVE_TESTS": "FALSE",
"AZURE_TEST_AGENT": "windows_2019_netcore31"
"AZURE_TEST_AGENT": "WINDOWS_2019_NETCORE31"
}
]
}

0 comments on commit c195225

Please sign in to comment.