mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
fix: revert remote libcxx requirement to 3.4.25 (#248976)
* fix: revert libcxx requirement to 3.4.25 * ci: temp debugging * fix: use gcc 8.5.0 for remote * ci: update cache * ci: fix sysroot directory * ci: fix objdump directory
This commit is contained in:
@@ -159,7 +159,7 @@ async function getVSCodeSysroot(arch, isMusl = false) {
|
||||
}
|
||||
console.log(`Installing ${arch} root image: ${sysroot}`);
|
||||
fs_1.default.rmSync(sysroot, { recursive: true, force: true });
|
||||
fs_1.default.mkdirSync(sysroot);
|
||||
fs_1.default.mkdirSync(sysroot, { recursive: true });
|
||||
await fetchUrl({
|
||||
checksumSha256,
|
||||
assetName: expectedName,
|
||||
|
||||
@@ -172,7 +172,7 @@ export async function getVSCodeSysroot(arch: DebianArchString, isMusl: boolean =
|
||||
}
|
||||
console.log(`Installing ${arch} root image: ${sysroot}`);
|
||||
fs.rmSync(sysroot, { recursive: true, force: true });
|
||||
fs.mkdirSync(sysroot);
|
||||
fs.mkdirSync(sysroot, { recursive: true });
|
||||
await fetchUrl({
|
||||
checksumSha256,
|
||||
assetName: expectedName,
|
||||
|
||||
Reference in New Issue
Block a user