@@ -32,10 +32,10 @@ parameters:
32
32
# Required: submitToHelix -> Boolean -> Value to know if it should submit tests payloads to helix.
33
33
34
34
# 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 ...'
36
36
37
37
# 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'
39
39
40
40
# Optional: customBuildSteps -> Array -> list of steps to run instead of the common build steps.
41
41
# customBuildSteps:
@@ -52,7 +52,7 @@ parameters:
52
52
53
53
jobs :
54
54
- ${{ each job in parameters.jobs }} :
55
- - template : .. /common/templates/job/job.yml
55
+ - template : /eng /common/templates/job/job.yml
56
56
parameters :
57
57
variables :
58
58
@@ -96,12 +96,12 @@ jobs:
96
96
97
97
# Windows variables
98
98
- ${{ if eq(parameters.targetOS, 'Windows_NT') }} :
99
- - _buildScript : build .cmd
99
+ - _buildScript : libraries .cmd
100
100
- _msbuildCommand : powershell -ExecutionPolicy ByPass -NoProfile eng\common\msbuild.ps1 -warnaserror:0 -ci
101
101
102
102
# Non-Windows variables
103
103
- ${{ if ne(parameters.targetOS, 'Windows_NT') }} :
104
- - _buildScript : ${{ job.buildScriptPrefix }}./build .sh
104
+ - _buildScript : ${{ job.buildScriptPrefix }}./libraries .sh
105
105
- _msbuildCommand : ${{ job.buildScriptPrefix }}./eng/common/msbuild.sh --warnaserror false --ci
106
106
- ${{ if eq(parameters.isOfficialBuild, 'true') }} :
107
107
- _commonArguments : $(_args) -stripSymbols
@@ -186,7 +186,7 @@ jobs:
186
186
artifactType : container
187
187
condition : and(succeeded(), eq(variables['_publishTests'], 'true'))
188
188
189
- - template : /eng/pipelines/helix.yml
189
+ - template : /eng/pipelines/libraries/ helix.yml
190
190
parameters :
191
191
# send tests to helix only on public builds, official scheduled builds or manual official builds.
192
192
condition : eq(${{ parameters.isOfficialBuild }}, False)
0 commit comments