From bc2747ead7690d09bbb6e43fd91a73d582db9e75 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 15 Apr 2015 15:20:54 +0200 Subject: [PATCH] Run spec on darwin only ...as we're not ready yet to use Linux. --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 3655e91e9..071dd1295 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -226,7 +226,7 @@ module.exports = (grunt) -> ciTasks.push('set-version', 'check-licenses', 'lint') ciTasks.push('mkdeb') if process.platform is 'linux' ciTasks.push('create-windows-installer') if process.platform is 'win32' - ciTasks.push('test') if process.platform in ['darwin', 'linux'] + ciTasks.push('test') if process.platform is 'darwin' ciTasks.push('codesign') unless process.env.TRAVIS ciTasks.push('publish-build') unless process.env.TRAVIS grunt.registerTask('ci', ciTasks)