pulsar/script/cibuild

53 lines
1.8 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env node
2013-10-14 12:29:26 +04:00
var cp = require('./utils/child-process-wrapper.js');
var fs = require('fs');
var path = require('path');
2012-08-31 21:43:21 +04:00
2013-10-14 12:29:26 +04:00
process.chdir(path.dirname(__dirname));
2013-06-21 02:26:00 +04:00
2013-12-18 21:48:03 +04:00
if (process.platform == 'linux')
2013-12-17 05:33:45 +04:00
throw new Error('cibuild can not run on linux yet!');
2013-06-21 02:26:00 +04:00
2013-10-14 12:29:26 +04:00
var homeDir = process.platform == 'win32' ? process.env.USERPROFILE : process.env.HOME;
2013-06-21 02:41:23 +04:00
function loadEnvironmentVariables(filePath) {
try {
var lines = fs.readFileSync(filePath, 'utf8').trim().split('\n');
for (i in lines) {
var parts = lines[i].split('=');
var key = parts[0].trim();
var value = parts[1].trim().substr(1, parts[1].length - 2);
process.env[key] = value;
2013-10-14 12:29:26 +04:00
}
2014-06-14 02:05:36 +04:00
} catch(error) {
2014-06-14 02:12:06 +04:00
console.error("Failed to load environment variables: " + filePath, error.code);
2014-06-14 02:05:36 +04:00
}
2013-10-14 12:29:26 +04:00
}
2013-10-04 08:42:15 +04:00
function readEnvironmentVariables() {
2014-06-14 02:40:46 +04:00
if (process.platform === 'win32')
2014-06-14 02:25:13 +04:00
loadEnvironmentVariables(path.resolve('/jenkins/config/atomcredentials'));
2014-06-14 02:40:46 +04:00
else {
2014-06-14 02:05:36 +04:00
loadEnvironmentVariables('/var/lib/jenkins/config/atomcredentials');
loadEnvironmentVariables('/var/lib/jenkins/config/xcodekeychain');
}
}
2013-10-27 02:03:21 +04:00
readEnvironmentVariables();
2014-05-29 05:31:20 +04:00
cp.safeExec.bind(global, 'npm install npm', {cwd: path.resolve(__dirname, '..', 'build')}, function() {
2014-05-27 21:25:23 +04:00
cp.safeExec.bind(global, 'node script/bootstrap', function(error) {
if (error)
process.exit(1);
require('fs-plus').removeSync.bind(global, path.join(homeDir, '.atom'))
var async = require('async');
var gruntPath = path.join('build', 'node_modules', '.bin', 'grunt') + (process.platform === 'win32' ? '.cmd' : '');
var tasks = [
cp.safeExec.bind(global, 'git clean -dff'),
cp.safeExec.bind(global, gruntPath + ' ci --gruntfile build/Gruntfile.coffee --stack --no-color'),
]
async.series(tasks, function(error) {
process.exit(error ? 1 : 0);
});
})();
2013-10-27 02:07:20 +04:00
})();