Skip to content

Commit 2f95c3e

Browse files
Fix courtesy push by enablin npmci command for serverbuild (#20228)
1 parent a8ec37e commit 2f95c3e

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

make-util.js

+11-4
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ var getCommonPackInfo = function (modOutDir) {
153153
}
154154
exports.getCommonPackInfo = getCommonPackInfo;
155155

156-
var buildNodeTask = function (taskPath, outDir) {
156+
var buildNodeTask = function (taskPath, outDir, isServerBuild) {
157157
var originalDir = shell.pwd().toString();
158158
cd(taskPath);
159159
var packageJsonPath = rp('package.json');
@@ -173,13 +173,20 @@ var buildNodeTask = function (taskPath, outDir) {
173173
} else if (devDeps >= 1) {
174174
fail('The package.json should not contain dev dependencies other than typescript. Move the dev dependencies into a package.json file under the Tests sub-folder. Offending package.json: ' + packageJsonPath);
175175
}
176-
177-
run('npm install');
176+
if (isServerBuild) {
177+
run('npm ci');
178+
} else {
179+
run('npm install');
180+
}
178181
}
179182

180183
if (test('-f', rp(path.join('Tests', 'package.json')))) {
181184
cd(rp('Tests'));
182-
run('npm install');
185+
if (isServerBuild) {
186+
run('npm ci');
187+
} else {
188+
run('npm install');
189+
}
183190
cd(taskPath);
184191
}
185192

make.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,14 @@ CLI.serverBuild = async function(/** @type {{ task: string }} */ argv) {
229229
await util.installNodeAsync('20');
230230
ensureTool('node', '--version', `v${node20Version}`);
231231
for (const taskName of allTasksNode20) {
232-
await buildTaskWrapped(taskName, allTasksNode20.length, 20);
232+
await buildTaskWrapped(taskName, allTasksNode20.length, 20, !writeUpdatedsFromGenTasks);
233233
}
234234
}
235235
if (allTasksDefault.length > 0) {
236236
await util.installNodeAsync('10');
237237
ensureTool('node', '--version', `v${node10Version}`);
238238
for (const taskName of allTasksDefault) {
239-
await buildTaskWrapped(taskName, allTasksNode20.length, 10);
239+
await buildTaskWrapped(taskName, allTasksNode20.length, 10, !writeUpdatedsFromGenTasks);
240240
}
241241
}
242242

@@ -263,7 +263,7 @@ function getNodeVersion (taskName) {
263263

264264
}
265265

266-
async function buildTaskAsync(taskName, taskListLength, nodeVersion) {
266+
async function buildTaskAsync(taskName, taskListLength, nodeVersion, isServerBuild = false) {
267267
let isGeneratedTask = false;
268268
banner(`Building task ${taskName} using Node.js ${nodeVersion}`);
269269
const removeNodeModules = taskListLength > 1;
@@ -348,7 +348,7 @@ async function buildTaskAsync(taskName, taskListLength, nodeVersion) {
348348

349349
// npm install and compile
350350
if ((mod.type === 'node' && mod.compile == true) || test('-f', path.join(modPath, 'tsconfig.json'))) {
351-
buildNodeTask(modPath, modOutDir);
351+
buildNodeTask(modPath, modOutDir, isServerBuild);
352352
}
353353

354354
// copy default resources and any additional resources defined in the module's make.json
@@ -410,7 +410,7 @@ async function buildTaskAsync(taskName, taskListLength, nodeVersion) {
410410

411411
// build Node task
412412
if (shouldBuildNode) {
413-
buildNodeTask(taskPath, outDir);
413+
buildNodeTask(taskPath, outDir, isServerBuild);
414414
}
415415

416416
// remove the hashes for the common packages, they change every build

0 commit comments

Comments
 (0)