Skip to content

Commit 1002974

Browse files
Make the 'publish-nightly' target run tests in parallel.
1 parent d74cb24 commit 1002974

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gulpfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ gulp.task("configure-nightly", "Runs scripts/configureNightly.ts to prepare a bu
294294
exec(host, [configureNightlyJs, packageJson, versionFile], done, done);
295295
});
296296
gulp.task("publish-nightly", "Runs `npm publish --tag next` to create a new nightly build on npm", ["LKG"], () => {
297-
return runSequence("clean", "useDebugMode", "runtests", (done) => {
297+
return runSequence("clean", "useDebugMode", "runtests-parallel", (done) => {
298298
exec("npm", ["publish", "--tag", "next"], done, done);
299299
});
300300
});

Jakefile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ task("configure-nightly", [configureNightlyJs], function () {
505505
}, { async: true });
506506

507507
desc("Configure, build, test, and publish the nightly release.");
508-
task("publish-nightly", ["configure-nightly", "LKG", "clean", "setDebugMode", "runtests"], function () {
508+
task("publish-nightly", ["configure-nightly", "LKG", "clean", "setDebugMode", "runtests-parallel"], function () {
509509
var cmd = "npm publish --tag next";
510510
console.log(cmd);
511511
exec(cmd);

0 commit comments

Comments
 (0)