Skip to content

Commit 49871e7

Browse files
committed
fixup! Add INSTALL_RUN_RUSH_LOCKFILE_PATH to pipeline runs.
1 parent 7008d6c commit 49871e7

2 files changed

Lines changed: 18 additions & 5 deletions

File tree

common/config/azure-pipelines/npm-post-publish.yaml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,17 @@ extends:
9898

9999
- template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self
100100
parameters:
101-
Arguments: 'install --to repo-toolbox'
101+
Arguments: >
102+
install
103+
--to repo-toolbox
102104
DisplayName: 'Rush Install'
103105

104106
- template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self
105107
parameters:
106-
Arguments: 'build --to repo-toolbox --verbose'
108+
Arguments: >
109+
build
110+
--to repo-toolbox
111+
--verbose
107112
DisplayName: 'Rush Build (repo-toolbox)'
108113

109114
- script: 'node repo-scripts/repo-toolbox/lib-commonjs/start.js bump-decoupled-local-dependencies'
@@ -179,7 +184,10 @@ extends:
179184

180185
- template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self
181186
parameters:
182-
Arguments: 'build --to-except api.rushstack.io --verbose'
187+
Arguments: >
188+
build
189+
--to-except api.rushstack.io
190+
--verbose
183191
DisplayName: 'Rush Build to-except api.rushstack.io (rushstack-websites)'
184192

185193
# Download the api artifact from the triggering publish pipeline.

common/config/azure-pipelines/templates/build.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ steps:
1212

1313
- template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self
1414
parameters:
15-
Arguments: 'change --verify'
15+
Arguments: >
16+
change
17+
--verify
1618
DisplayName: 'Verify Change Logs'
1719

1820
- template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self
@@ -28,7 +30,10 @@ steps:
2830

2931
- template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self
3032
parameters:
31-
Arguments: 'retest --verbose --production ${{ parameters.BuildParameters }}'
33+
Arguments: >
34+
retest
35+
--verbose
36+
--production ${{ parameters.BuildParameters }}
3237
DisplayName: 'Rush retest (install-run-rush)'
3338

3439
- script: 'npm run test'

0 commit comments

Comments
 (0)