72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
|
|
import { CosmosClient } from '@azure/cosmos';
|
|
import { retry } from './retry';
|
|
|
|
function getEnv(name: string): string {
|
|
const result = process.env[name];
|
|
|
|
if (typeof result === 'undefined') {
|
|
throw new Error('Missing env: ' + name);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
interface Config {
|
|
id: string;
|
|
frozen: boolean;
|
|
}
|
|
|
|
function createDefaultConfig(quality: string): Config {
|
|
return {
|
|
id: quality,
|
|
frozen: false
|
|
};
|
|
}
|
|
|
|
async function getConfig(client: CosmosClient, quality: string): Promise<Config> {
|
|
const query = `SELECT TOP 1 * FROM c WHERE c.id = "${quality}"`;
|
|
|
|
const res = await client.database('builds').container('config').items.query(query).fetchAll();
|
|
|
|
if (res.resources.length === 0) {
|
|
return createDefaultConfig(quality);
|
|
}
|
|
|
|
return res.resources[0] as Config;
|
|
}
|
|
|
|
async function main(): Promise<void> {
|
|
const commit = getEnv('BUILD_SOURCEVERSION');
|
|
const quality = getEnv('VSCODE_QUALITY');
|
|
|
|
const client = new CosmosClient({ endpoint: process.env['AZURE_DOCUMENTDB_ENDPOINT']!, key: process.env['AZURE_DOCUMENTDB_MASTERKEY'] });
|
|
const config = await getConfig(client, quality);
|
|
|
|
console.log('Quality config:', config);
|
|
|
|
if (config.frozen) {
|
|
console.log(`Skipping release because quality ${quality} is frozen.`);
|
|
return;
|
|
}
|
|
|
|
console.log(`Releasing build ${commit}...`);
|
|
|
|
const scripts = client.database('builds').container(quality).scripts;
|
|
await retry(() => scripts.storedProcedure('releaseBuild').execute('', [commit]));
|
|
}
|
|
|
|
main().then(() => {
|
|
console.log('Build successfully released');
|
|
process.exit(0);
|
|
}, err => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|