From dc0bdef36c117ed744b845dfba7f344ec5a85a0c Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 12 Sep 2014 11:14:08 -0700 Subject: [PATCH] Don't run specs on Linux CI for now --- build/Gruntfile.coffee | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 00fd904c7..c1ba7a2d7 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -227,11 +227,12 @@ module.exports = (grunt) -> grunt.registerTask('test', ['shell:kill-atom', 'run-specs']) grunt.registerTask('docs', ['markdown:guides', 'build-docs']) - ciTasks = ['output-disk-space', 'download-atom-shell', 'build'] - ciTasks.push('dump-symbols') unless process.platform is 'win32' + ciTasks.push('dump-symbols') if process.platform isnt 'win32' ciTasks.push('mkdeb') if process.platform is 'linux' ciTasks.push('set-version', 'check-licenses', 'lint', 'test', 'codesign', 'publish-build') + ciTasks.push('test') if process.platform isnt 'linux' + ciTasks.push('codesign', 'publish-build') grunt.registerTask('ci', ciTasks) defaultTasks = ['download-atom-shell', 'build', 'set-version']