Revert to Checking only ci.yml (#1918)

Pull only artifacts from `ci.yml` to resolve issue with conflicting package names.

Co-authored-by: Chidozie Ononiwu <31145988+chidozieononiwu@users.noreply.github.com>
This commit is contained in:
Azure SDK Bot 2021-03-16 14:53:03 -07:00 committed by GitHub
parent 64d9356ff6
commit 6e19575491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ function Get-PkgPropsForEntireService ($serviceDirectoryPath)
}
}
$ciYmlFiles = Get-ChildItem $serviceDirectoryPath -filter "ci.*yml"
$ciYmlFiles = Get-ChildItem $serviceDirectoryPath -filter "ci.yml"
foreach($ciYmlFile in $ciYmlFiles)
{
$activeArtifactList = Get-ArtifactListFromYml -ciYmlPath $ciYmlFile.FullName
@ -192,4 +192,4 @@ function Get-ArtifactListFromYml ($ciYmlPath)
$artifactsInCI = $ciYmlObj["extends"]["parameters"]["Artifacts"]
}
return $artifactsInCI
}
}