mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
* Compile build folder * Fix build compile issues (#22813) * Revert changes * Update gulp-shell * Test * Update * Update modifiers * Try reverting minimist * Generates linux deb artifact (#22922) * Remove deb files that were brought in with the latest merge. * Add debian back to linux gulp file * Remove async from anonymous function. * Remove run core integration tests build step in pipeline * Revert "Remove async from anonymous function." This reverts commit 7ad1ce2942954fce58939b9965343b46b9311a7e. * Revert "Add debian back to linux gulp file" This reverts commit 96b7c0f0995c8024ef67ed886da34255a5caa325. * Revert "Remove deb files that were brought in with the latest merge." This reverts commit bf3aae233b8da1f9111a149a96d77cc78d376094. * Removes dependency checks * Fix dependency gen errors * Reenable "Build Deb" step * Reenable publish deb * Run core integration tests * Revert "Run core integration tests" This reverts commit 7cafbada194feebe771862af796fb3416b5dd686. * Revert "Try reverting minimist" This reverts commit 38fd843c1d5c33318a92f4bbc7057e951c5a9f71. * Disable code coverage step intermin --------- Co-authored-by: Charles Gagnon <chgagnon@microsoft.com> Co-authored-by: Lewis Sanchez <87730006+lewis-sanchez@users.noreply.github.com>
27 lines
1.2 KiB
JavaScript
27 lines
1.2 KiB
JavaScript
"use strict";
|
|
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.sysrootInfo = void 0;
|
|
// 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.
|
|
exports.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'
|
|
}
|
|
};
|