Merge pull request #4711 from spalger/fix/snapshotBuildingOnJenkins

[jenkins] build snapshots as the final task of core jobs
This commit is contained in:
Spencer 2015-08-18 19:56:36 -07:00
commit 2c83cd331b

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
]));
};