From 5068bd530e50cdcd4e0353b8be0bf99325e13077 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 9 Apr 2015 19:05:33 +0200 Subject: [PATCH] Revert ":penguin: Run tests also on Linux" This reverts commit 31d1f587e3f1f34c80bd1e6d2ced92cd09f0e5f1. --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 24ad88b7e..05efaeb38 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') ciTasks.push('publish-build') grunt.registerTask('ci', ciTasks)