This commit is contained in:
Cheng Zhao 2022-04-26 19:47:52 +09:00
Родитель 24e2e2f815
Коммит 650e26f9e8
2 изменённых файлов: 3 добавлений и 3 удалений

2
bootstrap.js поставляемый
Просмотреть файл

@ -72,7 +72,7 @@ if (!skipGclient) {
const BUILD_TOOLS_URL = 'https://github.com/electron/build-tools'
const buildToolsDir = path.join('vendor', 'build-tools')
if (fs.existsSync(buildToolsDir)) {
execSync('git checkout master', {stdio: 'pipe', cwd: buildToolsDir})
execSync('git checkout main', {stdio: 'pipe', cwd: buildToolsDir})
execSync('git pull', {stdio: 'pipe', cwd: buildToolsDir})
} else {
execSync(`git clone ${BUILD_TOOLS_URL} ${buildToolsDir}`)

Просмотреть файл

@ -20,8 +20,8 @@ let jobs = os.cpus().length
const useGoma = fs.readFileSync(outDir + '/args.gn').toString().includes('goma.gn')
if (useGoma) {
const goma = require('./vendor/build-tools/src/utils/goma')
goma.auth({gomaOneForAll: true})
goma.ensure()
goma.auth({goma: 'cluster'})
goma.ensure({goma: 'cluster'})
jobs = 200
}