mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
module.exports = function (grunt) {
|
|
let { compact } = require('lodash');
|
|
|
|
grunt.registerTask('jenkins', 'Jenkins build script', function () {
|
|
grunt.option('os-packages', true);
|
|
grunt.task.run(compact([
|
|
'test',
|
|
process.env.JOB_NAME === 'kibana_core' ? 'build' : null
|
|
]));
|
|
});
|
|
|
|
};
|