@@ -32,10 +32,10 @@ parameters:
3232 # Required: submitToHelix -> Boolean -> Value to know if it should submit tests payloads to helix.
3333
3434 # Optional: buildScriptPrefix -> String -> string to append to Unix build script.
35- # buildScriptPrefix: 'HOME=/home/ ' -> 'HOME=/home/ ./build .sh ...'
35+ # buildScriptPrefix: 'HOME=/home/ ' -> 'HOME=/home/ ./libraries .sh ...'
3636
3737 # Optional: buildExtraArguments -> String -> string to append at the end of the build arguments
38- # buildExtraArguments: /p:RuntimeOS=win10 -> 'build .cmd ... /p:RuntimeOS=win10'
38+ # buildExtraArguments: /p:RuntimeOS=win10 -> 'libraries .cmd ... /p:RuntimeOS=win10'
3939
4040 # Optional: customBuildSteps -> Array -> list of steps to run instead of the common build steps.
4141 # customBuildSteps:
@@ -52,7 +52,7 @@ parameters:
5252
5353jobs :
5454 - ${{ each job in parameters.jobs }} :
55- - template : .. /common/templates/job/job.yml
55+ - template : /eng /common/templates/job/job.yml
5656 parameters :
5757 variables :
5858
@@ -96,12 +96,12 @@ jobs:
9696
9797 # Windows variables
9898 - ${{ if eq(parameters.targetOS, 'Windows_NT') }} :
99- - _buildScript : build .cmd
99+ - _buildScript : libraries .cmd
100100 - _msbuildCommand : powershell -ExecutionPolicy ByPass -NoProfile eng\common\msbuild.ps1 -warnaserror:0 -ci
101101
102102 # Non-Windows variables
103103 - ${{ if ne(parameters.targetOS, 'Windows_NT') }} :
104- - _buildScript : ${{ job.buildScriptPrefix }}./build .sh
104+ - _buildScript : ${{ job.buildScriptPrefix }}./libraries .sh
105105 - _msbuildCommand : ${{ job.buildScriptPrefix }}./eng/common/msbuild.sh --warnaserror false --ci
106106 - ${{ if eq(parameters.isOfficialBuild, 'true') }} :
107107 - _commonArguments : $(_args) -stripSymbols
@@ -186,7 +186,7 @@ jobs:
186186 artifactType : container
187187 condition : and(succeeded(), eq(variables['_publishTests'], 'true'))
188188
189- - template : /eng/pipelines/helix.yml
189+ - template : /eng/pipelines/libraries/ helix.yml
190190 parameters :
191191 # send tests to helix only on public builds, official scheduled builds or manual official builds.
192192 condition : eq(${{ parameters.isOfficialBuild }}, False)
0 commit comments