Skip to content

Commit 9b2fb97

Browse files
build: try dev-cdn-experimental for dev assets (including windows thing) (#696)
1 parent 2cdc482 commit 9b2fb97

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/utils/depot-tools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function platformOpts() {
6161
opts = {
6262
DEPOT_TOOLS_WIN_TOOLCHAIN: '1',
6363
DEPOT_TOOLS_WIN_TOOLCHAIN_BASE_URL:
64-
'https://electronbuildtools.blob.core.windows.net/windows-toolchains/_',
64+
'https://dev-cdn-experimental.electronjs.org/windows-toolchains/_',
6565
GYP_MSVS_HASH_9ff60e43ba91947baca460d0ca3b1b980c3a2c23:
6666
'6d205e765a23d3cbe0fcc8d1191ae406d8bf9c04',
6767
GYP_MSVS_HASH_a687d8e2e4114d9015eb550e1b156af21381faac:

src/utils/reclient.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function downloadAndPrepareReclient(config) {
6666
deleteDir(reclientDir);
6767
deleteDir(tmpDownload);
6868

69-
const downloadURL = `https://dev-cdn.electronjs.org/reclient/credential-helper/${CREDENTIAL_HELPER_TAG}/electron-rbe-credential-helper-${targetPlatform}.tar.gz`;
69+
const downloadURL = `https://dev-cdn-experimental.electronjs.org/reclient/credential-helper/${CREDENTIAL_HELPER_TAG}/electron-rbe-credential-helper-${targetPlatform}.tar.gz`;
7070
console.log(`Downloading ${color.cmd(downloadURL)} into ${color.path(tmpDownload)}`);
7171
const { status } = childProcess.spawnSync(
7272
process.execPath,

src/utils/sdk.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const { deleteDir } = require('./paths');
1212
const SDKDir = path.resolve(__dirname, '..', '..', 'third_party', 'SDKs');
1313
const SDKZip = path.resolve(SDKDir, 'MacOSX.sdk.zip');
1414

15-
const XcodeBaseURL = 'https://dev-cdn.electronjs.org/xcode/';
15+
const XcodeBaseURL = 'https://dev-cdn-experimental.electronjs.org/xcode/';
1616

1717
const SDKs = {
1818
'15.1': {

0 commit comments

Comments
 (0)