Skip to content

Commit 72fc822

Browse files
authored
Fix linker pipeline (#118738)
e911894 broke the runtime-linker-tests pipeline (the .yml failure didn't surface in github). Fix this by using a variable, not a template paramater, for archType.
1 parent c5e7fac commit 72fc822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/pipelines/runtime-linker-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ extends:
8585
# Build libs.sfx subset first so that Roslyn analyzer tests can use live ref pack
8686
buildArgs: -s libs.sfx -c $(_BuildConfig)
8787
postBuildSteps:
88-
- script: $(Build.SourcesDirectory)$(dir)build$(scriptExt) -ci -arch ${{ parameters.archType }} $(_osParameter) -s tools.illinktests -test -c $(_BuildConfig) $(crossArg) $(_officialBuildParameter)
88+
- script: $(Build.SourcesDirectory)$(dir)build$(scriptExt) -ci -arch $(archType) $(_osParameter) -s tools.illinktests -test -c $(_BuildConfig) $(crossArg) $(_officialBuildParameter)
8989
displayName: Run ILLink Tests
9090

9191
#

0 commit comments

Comments
 (0)