We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a3875f commit 8568a83Copy full SHA for 8568a83
eng/pipelines/templates/jobs/smoke.tests.yml
@@ -167,6 +167,10 @@ jobs:
167
return @{ "name" = $matches[1]; "version" = $matches[2] }
168
}
169
170
+ if ($artifacts.name -notcontains "${{parameters.Artifact.name}}") {
171
+ Write-Host "Can't find package ${{parameters.Artifact.name}}"
172
+ exit 1
173
+ }
174
$dependencies = Get-Content $(requirements) | ForEach-Object {
175
$line = $_
176
if ($line -match "([a-zA-Z\-]+)(\W+)(.*)") {
0 commit comments