Skip to content

Commit

Permalink
build: try dev-cdn-experimental for dev assets (including windows thi…
Browse files Browse the repository at this point in the history
…ng) (#696)
  • Loading branch information
MarshallOfSound authored Feb 25, 2025
1 parent 2cdc482 commit 9b2fb97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/utils/depot-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function platformOpts() {
opts = {
DEPOT_TOOLS_WIN_TOOLCHAIN: '1',
DEPOT_TOOLS_WIN_TOOLCHAIN_BASE_URL:
'https://electronbuildtools.blob.core.windows.net/windows-toolchains/_',
'https://dev-cdn-experimental.electronjs.org/windows-toolchains/_',
GYP_MSVS_HASH_9ff60e43ba91947baca460d0ca3b1b980c3a2c23:
'6d205e765a23d3cbe0fcc8d1191ae406d8bf9c04',
GYP_MSVS_HASH_a687d8e2e4114d9015eb550e1b156af21381faac:
Expand Down
2 changes: 1 addition & 1 deletion src/utils/reclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function downloadAndPrepareReclient(config) {
deleteDir(reclientDir);
deleteDir(tmpDownload);

const downloadURL = `https://dev-cdn.electronjs.org/reclient/credential-helper/${CREDENTIAL_HELPER_TAG}/electron-rbe-credential-helper-${targetPlatform}.tar.gz`;
const downloadURL = `https://dev-cdn-experimental.electronjs.org/reclient/credential-helper/${CREDENTIAL_HELPER_TAG}/electron-rbe-credential-helper-${targetPlatform}.tar.gz`;
console.log(`Downloading ${color.cmd(downloadURL)} into ${color.path(tmpDownload)}`);
const { status } = childProcess.spawnSync(
process.execPath,
Expand Down
2 changes: 1 addition & 1 deletion src/utils/sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { deleteDir } = require('./paths');
const SDKDir = path.resolve(__dirname, '..', '..', 'third_party', 'SDKs');
const SDKZip = path.resolve(SDKDir, 'MacOSX.sdk.zip');

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

const SDKs = {
'15.1': {
Expand Down

0 comments on commit 9b2fb97

Please sign in to comment.