Skip to content

Commit

Permalink
(ci): update pattern matching in perch benchmark install (microsoft#2…
Browse files Browse the repository at this point in the history
…2995)

Current pattern ?.?.? doesn't support multi digit versions. Bump to
client 2.10.0 has caused the "Install package with perf tests" step to
be failing in the pipeline.
  • Loading branch information
zhenmichael authored Nov 6, 2024
1 parent e3ae396 commit a909e19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ steps:
# available at runtime. Also, using ! as separator instead of the usual / because forward slash is something we
# need to replace.
TEST_PACKAGE_NAME=$(echo "${{ parameters.testPackageName }}" | sed -r 's!@!!g' | sed -r 's!/!-!g')
echo "##vso[task.setvariable variable=itpbip_sanitizedPackageName]${TEST_PACKAGE_NAME}-?.?.?-*.tgz"
echo "##vso[task.setvariable variable=itpbip_sanitizedPackageName]${TEST_PACKAGE_NAME}-*.*.*-*.tgz"
echo "##vso[task.setvariable variable=itpbip_downloadPath]$(Pipeline.Workspace)/downloadedPackages"
# Download package that has performance tests
Expand Down

0 comments on commit a909e19

Please sign in to comment.