Skip to content

Commit 9f8df53

Browse files
authored
fix(v8): do not ignore failures when running git (#809)
Also always use `forceRunAsync` because `runAsync` exits the process on error.
1 parent d7b00b5 commit 9f8df53

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

components/git/v8.js

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export function handler(argv) {
8181
options.execGitNode = function execGitNode(cmd, args, input) {
8282
args.unshift(cmd);
8383
return forceRunAsync('git', args, {
84+
ignoreFailure: false,
8485
input,
8586
spawnArgs: {
8687
cwd: options.nodeDir,
@@ -91,6 +92,7 @@ export function handler(argv) {
9192

9293
options.execGitV8 = function execGitV8(...args) {
9394
return forceRunAsync('git', args, {
95+
ignoreFailure: false,
9496
captureStdout: true,
9597
spawnArgs: { cwd: options.v8Dir, stdio: ['ignore', 'pipe', 'ignore'] }
9698
});

lib/update-v8/majorUpdate.js

+9-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
} from './util.js';
1515
import applyNodeChanges from './applyNodeChanges.js';
1616
import { chromiumGit, v8Deps } from './constants.js';
17-
import { runAsync } from '../run.js';
17+
import { forceRunAsync } from '../run.js';
1818

1919
export default function majorUpdate() {
2020
return {
@@ -83,7 +83,8 @@ function cloneLocalV8() {
8383
return {
8484
title: 'Clone branch to deps/v8',
8585
task: (ctx) =>
86-
runAsync('git', ['clone', '-b', ctx.branch, ctx.v8Dir, 'deps/v8'], {
86+
forceRunAsync('git', ['clone', '-b', ctx.branch, ctx.v8Dir, 'deps/v8'], {
87+
ignoreFailure: false,
8788
spawnArgs: { cwd: ctx.nodeDir, stdio: 'ignore' }
8889
})
8990
};
@@ -101,7 +102,8 @@ function addDepsV8() {
101102
title: 'Track all files in deps/v8',
102103
// Add all V8 files with --force before updating DEPS. We have to do this
103104
// because some files are checked in by V8 despite .gitignore rules.
104-
task: (ctx) => runAsync('git', ['add', '--force', 'deps/v8'], {
105+
task: (ctx) => forceRunAsync('git', ['add', '--force', 'deps/v8'], {
106+
ignoreFailure: false,
105107
spawnArgs: { cwd: ctx.nodeDir, stdio: 'ignore' }
106108
})
107109
};
@@ -164,6 +166,9 @@ async function fetchFromGit(cwd, repo, commit) {
164166
await removeDirectory(path.join(cwd, '.git'));
165167

166168
function exec(...options) {
167-
return runAsync('git', options, { spawnArgs: { cwd, stdio: 'ignore' } });
169+
return forceRunAsync('git', options, {
170+
ignoreFailure: false,
171+
spawnArgs: { cwd, stdio: 'ignore' }
172+
});
168173
}
169174
}

lib/update-v8/minorUpdate.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Listr } from 'listr2';
66

77
import { getCurrentV8Version } from './common.js';
88
import { isVersionString } from './util.js';
9-
import { runAsync } from '../run.js';
9+
import { forceRunAsync } from '../run.js';
1010

1111
export default function minorUpdate() {
1212
return {
@@ -27,7 +27,8 @@ function getLatestV8Version() {
2727
task: async(ctx) => {
2828
const version = ctx.currentVersion;
2929
const currentV8Tag = `${version.major}.${version.minor}.${version.build}`;
30-
const result = await runAsync('git', ['tag', '-l', `${currentV8Tag}.*`], {
30+
const result = await forceRunAsync('git', ['tag', '-l', `${currentV8Tag}.*`], {
31+
ignoreFailure: false,
3132
captureStdout: true,
3233
spawnArgs: {
3334
cwd: ctx.v8Dir,
@@ -68,7 +69,8 @@ async function applyPatch(ctx, latestStr) {
6869
{ cwd: ctx.v8Dir, stdio: ['ignore', 'pipe', 'ignore'] }
6970
);
7071
try {
71-
await runAsync('git', ['apply', '--directory', 'deps/v8'], {
72+
await forceRunAsync('git', ['apply', '--directory', 'deps/v8'], {
73+
ignoreFailure: false,
7274
spawnArgs: {
7375
cwd: ctx.nodeDir,
7476
stdio: [diff.stdout, 'ignore', 'ignore']

lib/update-v8/updateV8Clone.js

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ function fetchOrigin() {
2020
task: async(ctx, task) => {
2121
try {
2222
await forceRunAsync('git', ['fetch', 'origin'], {
23+
ignoreFailure: false,
2324
spawnArgs: { cwd: ctx.v8Dir, stdio: 'ignore' }
2425
});
2526
} catch (e) {
@@ -40,6 +41,7 @@ function createClone() {
4041
task: async(ctx) => {
4142
await fs.mkdir(ctx.baseDir, { recursive: true });
4243
await forceRunAsync('git', ['clone', v8Git, ctx.v8Dir], {
44+
ignoreFailure: false,
4345
spawnArgs: { stdio: 'ignore' }
4446
});
4547
},

0 commit comments

Comments
 (0)