Skip to content

Commit ff81d52

Browse files
authored
Elide the exact node version rush complains about from the docker output (microsoft#32204)
1 parent a890275 commit ff81d52

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/testRunner/externalCompileRunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ function sanitizeTimestamps(result: string): string {
201201
function sanitizeVersionSpecifiers(result: string): string {
202202
return result
203203
.replace(/\d+.\d+.\d+-insiders.\d\d\d\d\d\d\d\d/g, "X.X.X-insiders.xxxxxxxx")
204-
.replace(/([@v])\d+\.\d+\.\d+/g, "$1X.X.X");
204+
.replace(/([@v\()])\d+\.\d+\.\d+/g, "$1X.X.X");
205205
}
206206

207207
/**

tests/baselines/reference/docker/azure-sdk.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ rush rebuild - Errors! ( ? seconds)
8282

8383

8484
Standard error:
85-
Your version of Node.js (12.4.0) has not been tested with this release of Rush. The Rush team will not accept issue reports for it. Please consider upgrading Rush or downgrading Node.js.
85+
Your version of Node.js (X.X.X) has not been tested with this release of Rush. The Rush team will not accept issue reports for it. Please consider upgrading Rush or downgrading Node.js.
8686
XX of XX: [@azure/service-bus] completed with warnings in ? seconds
8787
XX of XX: [@azure/core-amqp] failed to build!
8888
XX of XX: [@azure/event-hubs] blocked by [@azure/core-amqp]!

tests/baselines/reference/docker/office-ui-fabric.log

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ rush rebuild - Errors! ( ? seconds)
311311

312312

313313
Standard error:
314-
Your version of Node.js (12.4.0) has not been tested with this release of Rush. The Rush team will not accept issue reports for it. Please consider upgrading Rush or downgrading Node.js.
314+
Your version of Node.js (X.X.X) has not been tested with this release of Rush. The Rush team will not accept issue reports for it. Please consider upgrading Rush or downgrading Node.js.
315315
XX of XX: [@uifabric/codepen-loader] completed with warnings in ? seconds
316316
XX of XX: [@uifabric/set-version] completed with warnings in ? seconds
317317
XX of XX: [@uifabric/merge-styles] completed with warnings in ? seconds

0 commit comments

Comments
 (0)