mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
* Revert "Revert "Merge from vscode merge-base (#22769)" (#22779)"
This reverts commit 47a1745180.
* Fix notebook download task
* Remove done call from extensions-ci
25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// Based on https://github.com/electron/electron/blob/main/script/sysroots.json,
|
|
// which itself is based on https://source.chromium.org/chromium/chromium/src/+/main:build/linux/sysroot_scripts/sysroots.json.
|
|
export const sysrootInfo = {
|
|
'amd64': {
|
|
'Sha1Sum': '7e008cea9eae822d80d55c67fbb5ef4204678e74',
|
|
'SysrootDir': 'debian_sid_amd64-sysroot',
|
|
'Tarball': 'debian_sid_amd64_sysroot.tar.xz'
|
|
},
|
|
'armhf': {
|
|
'Sha1Sum': 'b6f4bb07817bea91b06514a9c1e3832df5a90dbf',
|
|
'SysrootDir': 'debian_sid_arm-sysroot',
|
|
'Tarball': 'debian_sid_arm_sysroot.tar.xz'
|
|
},
|
|
'arm64': {
|
|
'Sha1Sum': '5a56c1ef714154ea5003bcafb16f21b0f8dde023',
|
|
'SysrootDir': 'debian_sid_arm64-sysroot',
|
|
'Tarball': 'debian_sid_arm64_sysroot.tar.xz'
|
|
}
|
|
};
|