[jenkins] build snapshots as the final task of core jobs

This commit is contained in:
spalger 2015-08-18 19:26:15 -07:00
parent 5a8f7701e0
commit 8b37a1fc23

View file

@ -1,8 +1,10 @@
module.exports = function (grunt) {
let { compact } = require('lodash');
grunt.registerTask('jenkins', 'Jenkins build script', [
grunt.registerTask('jenkins', 'Jenkins build script', compact([
'esvm:dev',
'test'
]);
'test',
process.env.JOB_NAME === 'kibana_core' ? 'build' : null
]));
};