kibana/tasks/config/platforms.js
Spencer 2f6654bcec [eslint] re-enable no-var and prefer-const (#9455)
* [eslint] enable no-var and autofix

* [eslint] enable prefer-const and autofix

* [eslint] fix autofix-incompatible no-var and prefer-const violations
2016-12-13 10:44:27 -07:00

63 lines
1.8 KiB
JavaScript

import { endsWith } from 'lodash';
module.exports = function (grunt) {
const { resolve } = require('path');
const { version } = grunt.config.get('build');
const nodeVersion = grunt.config.get('nodeVersion');
const rootPath = grunt.config.get('root');
const baseUri = `https://nodejs.org/dist/v${nodeVersion}`;
return [
'darwin-x64',
'linux-x64',
'linux-x86',
'windows-x86'
].map(function (baseName) {
const win = baseName === 'windows-x86';
const nodeUrl = win ? `${baseUri}/win-x86/node.exe` : `${baseUri}/node-v${nodeVersion}-${baseName}.tar.gz`;
const nodeDir = resolve(rootPath, `.node_binaries/${nodeVersion}/${baseName}`);
const name = endsWith(baseName, '-x64')
? baseName.replace('-x64', '-x86_64')
: baseName;
const nodeShaSums = `${baseUri}/SHASUMS256.txt`;
const buildName = `kibana-${version}-${name}`;
const buildDir = resolve(rootPath, `build/${buildName}`);
const tarName = `${buildName}.tar.gz`;
const tarPath = resolve(rootPath, `target/${tarName}`);
const zipName = `${buildName}.zip`;
const zipPath = resolve(rootPath, `target/${zipName}`);
let debName;
let debPath;
let rpmName;
let rpmPath;
let debArch;
let rpmArch;
if (name.match('linux')) {
debArch = name.match('x86_64') ? 'amd64' : 'i386';
debName = `kibana-${version}-${debArch}.deb`;
debPath = resolve(rootPath, `target/${debName}`);
rpmArch = name.match('x86_64') ? 'x86_64' : 'i686';
rpmName = `kibana-${version}-${rpmArch}.rpm`;
rpmPath = resolve(rootPath, `target/${rpmName}`);
}
return {
name, win,
nodeUrl, nodeDir, nodeShaSums,
buildName, buildDir,
tarName, tarPath,
zipName, zipPath,
debName, debPath, debArch,
rpmName, rpmPath, rpmArch
};
});
};