fix(build): Temporarily disable tests on linux CI. See details

The linux CI server @ Nylas is running debian wheezy, which is too old to run N1 / Electron 0.35+. We need to switch to making the builds with Travis or https://packagecloud.io/.
This commit is contained in:
Ben Gotow 2015-11-30 15:04:28 -08:00
parent c2055907f3
commit 02633ffd57

View file

@ -362,7 +362,7 @@ module.exports = (grunt) ->
ciTasks = ['output-disk-space', 'download-electron', 'build']
ciTasks.push('dump-symbols') if process.platform isnt 'win32'
ciTasks.push('set-version', 'lint', 'generate-asar')
ciTasks.push('test') if process.platform isnt 'win32'
ciTasks.push('test') if process.platform is 'darwin'
unless process.env.TRAVIS
ciTasks.push('codesign')