gulpfile.vscode.win32.js 3.2 KB
Newer Older
J
Joao Moreno 已提交
1 2 3 4 5 6 7 8
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

'use strict';

const gulp = require('gulp');
9 10 11
const path = require('path');
const assert = require('assert');
const cp = require('child_process');
J
Joao Moreno 已提交
12
const _7z = require('7zip')['7z'];
J
Joao Moreno 已提交
13
const util = require('./lib/util');
14 15
const pkg = require('../package.json');
const product = require('../product.json');
J
Joao Moreno 已提交
16

17
const repoPath = path.dirname(__dirname);
J
Joao Moreno 已提交
18 19 20 21
const buildPath = arch => path.join(path.dirname(repoPath), `VSCode-win32-${arch}`);
const zipDir = arch => path.join(repoPath, '.build', `win32-${arch}`, 'archive');
const zipPath = arch => path.join(zipDir(arch), `VSCode-win32-${arch}.zip`);
const setupDir = arch => path.join(repoPath, '.build', `win32-${arch}`, 'setup');
22 23
const issPath = path.join(__dirname, 'win32', 'code.iss');
const innoSetupPath = path.join(path.dirname(path.dirname(require.resolve('innosetup-compiler'))), 'bin', 'ISCC.exe');
J
Joao Moreno 已提交
24

25 26 27 28
function packageInnoSetup(iss, options, cb) {
	options = options || {};

	const definitions = options.definitions || {};
J
Joao Moreno 已提交
29
	const keys = Object.keys(definitions);
30

J
Joao Moreno 已提交
31
	keys.forEach(key => assert(typeof definitions[key] === 'string', `Missing value for '${key}' in Inno Setup package step`));
J
Joao Moreno 已提交
32

J
Joao Moreno 已提交
33
	const defs = keys.map(key => `/d${key}=${definitions[key]}`);
J
Joao Moreno 已提交
34
	const args = [iss].concat(defs);
35 36 37 38 39 40

	cp.spawn(innoSetupPath, args, { stdio: 'inherit' })
		.on('error', cb)
		.on('exit', () => cb(null));
}

J
Joao Moreno 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
function buildWin32Setup(arch) {
	return cb => {
		const definitions = {
			NameLong: product.nameLong,
			NameShort: product.nameShort,
			DirName: product.win32DirName,
			Version: pkg.version,
			RawVersion: pkg.version.replace(/-\w+$/, ''),
			NameVersion: product.win32NameVersion,
			ExeBasename: product.nameShort,
			RegValueName: product.win32RegValueName,
			ShellNameShort: product.win32ShellNameShort,
			AppMutex: product.win32MutexName,
			AppId: product.win32AppId,
			AppUserId: product.win32AppUserModelId,
			SourceDir: buildPath(arch),
			RepoDir: repoPath,
			OutputDir: setupDir(arch)
		};
60

J
Joao Moreno 已提交
61 62
		packageInnoSetup(issPath, { definitions }, cb);
	};
J
Joao Moreno 已提交
63 64
}

J
Joao Moreno 已提交
65 66
gulp.task('clean-vscode-win32-ia32-setup', util.rimraf(setupDir('ia32')));
gulp.task('vscode-win32-ia32-setup', ['clean-vscode-win32-ia32-setup'], buildWin32Setup('ia32'));
J
Joao Moreno 已提交
67

J
Joao Moreno 已提交
68 69
gulp.task('clean-vscode-win32-x64-setup', util.rimraf(setupDir('x64')));
gulp.task('vscode-win32-x64-setup', ['clean-vscode-win32-x64-setup'], buildWin32Setup('x64'));
J
Joao Moreno 已提交
70

J
Joao Moreno 已提交
71 72
function archiveWin32Setup(arch) {
	return cb => {
J
Joao Moreno 已提交
73
		const args = ['a', '-tzip', zipPath(arch), '.', '-r'];
J
Joao Moreno 已提交
74

J
Joao Moreno 已提交
75
		cp.spawn(_7z, args, { stdio: 'inherit', cwd: buildPath(arch) })
J
Joao Moreno 已提交
76 77 78
			.on('error', cb)
			.on('exit', () => cb(null));
	};
J
Joao Moreno 已提交
79 80
}

J
Joao Moreno 已提交
81 82 83 84 85
gulp.task('clean-vscode-win32-ia32-archive', util.rimraf(zipDir('ia32')));
gulp.task('vscode-win32-ia32-archive', ['clean-vscode-win32-ia32-archive'], archiveWin32Setup('ia32'));

gulp.task('clean-vscode-win32-x64-archive', util.rimraf(zipDir('x64')));
gulp.task('vscode-win32-x64-archive', ['clean-vscode-win32-x64-archive'], archiveWin32Setup('x64'));