mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-21 20:30:29 -04:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
65 lines
2.7 KiB
JavaScript
65 lines
2.7 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const path = require("path");
|
|
const es = require("event-stream");
|
|
const vfs = require("vinyl-fs");
|
|
const util = require("../lib/util");
|
|
// @ts-ignore
|
|
const deps = require("../lib/dependencies");
|
|
const identity_1 = require("@azure/identity");
|
|
const azure = require('gulp-azure-storage');
|
|
const root = path.dirname(path.dirname(__dirname));
|
|
const commit = process.env['VSCODE_DISTRO_COMMIT'] || process.env['BUILD_SOURCEVERSION'];
|
|
const credential = new identity_1.ClientSecretCredential(process.env['AZURE_TENANT_ID'], process.env['AZURE_CLIENT_ID'], process.env['AZURE_CLIENT_SECRET']);
|
|
// optionally allow to pass in explicit base/maps to upload
|
|
const [, , base, maps] = process.argv;
|
|
function src(base, maps = `${base}/**/*.map`) {
|
|
return vfs.src(maps, { base })
|
|
.pipe(es.mapSync((f) => {
|
|
f.path = `${f.base}/core/${f.relative}`;
|
|
return f;
|
|
}));
|
|
}
|
|
function main() {
|
|
const sources = [];
|
|
// vscode client maps (default)
|
|
if (!base) {
|
|
const vs = src('out-vscode-min'); // client source-maps only
|
|
sources.push(vs);
|
|
const productionDependencies = deps.getProductionDependencies(root);
|
|
const productionDependenciesSrc = productionDependencies.map(d => path.relative(root, d.path)).map(d => `./${d}/**/*.map`);
|
|
const nodeModules = vfs.src(productionDependenciesSrc, { base: '.' })
|
|
.pipe(util.cleanNodeModules(path.join(root, 'build', '.moduleignore')));
|
|
sources.push(nodeModules);
|
|
const extensionsOut = vfs.src(['.build/extensions/**/*.js.map', '!**/node_modules/**'], { base: '.build' });
|
|
sources.push(extensionsOut);
|
|
}
|
|
// specific client base/maps
|
|
else {
|
|
sources.push(src(base, maps));
|
|
}
|
|
return new Promise((c, e) => {
|
|
es.merge(...sources)
|
|
.pipe(es.through(function (data) {
|
|
console.log('Uploading Sourcemap', data.relative); // debug
|
|
this.emit('data', data);
|
|
}))
|
|
.pipe(azure.upload({
|
|
account: process.env.AZURE_STORAGE_ACCOUNT,
|
|
credential,
|
|
container: 'sourcemaps',
|
|
prefix: commit + '/'
|
|
}))
|
|
.on('end', () => c())
|
|
.on('error', (err) => e(err));
|
|
});
|
|
}
|
|
main().catch(err => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|