From be134ce3c95d54ddc2e60a40a88f340be924100f Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 20 Jul 2016 13:01:00 +0200 Subject: [PATCH] Revert "Disable specs (again) to allow caching" This reverts commit b3d3b52d3de21397dd453f08fd0e07f1a9b4f6ba. --- build/Gruntfile.coffee | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index ad445a6ce..b248eda2e 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -282,21 +282,21 @@ module.exports = (grunt) -> ciTasks.push('output-disk-space') unless process.env.CI ciTasks.push('download-electron') ciTasks.push('download-electron-chromedriver') - # ciTasks.push('build') + ciTasks.push('build') ciTasks.push('fingerprint') - # ciTasks.push('dump-symbols') if process.platform is 'darwin' - # ciTasks.push('set-version', 'check-licenses', 'lint', 'generate-asar') - # ciTasks.push('mkdeb') if process.platform is 'linux' - # ciTasks.push('mktar') if process.platform is 'linux' - # ciTasks.push('test') if process.platform is 'darwin' - # ciTasks.push('codesign:app') if process.platform is 'darwin' and not process.env.CI - # if process.platform is 'win32' - # ciTasks.push('codesign:exe') if process.env.JANKY_SIGNTOOL - # ciTasks.push('codesign:installer-deferred') if not process.env.JANKY_SIGNTOOL - # ciTasks.push('create-windows-installer:installer') - # ciTasks.push('codesign:installer') if process.env.JANKY_SIGNTOOL - # ciTasks.push('codesign:cleanup') - # ciTasks.push('publish-build') unless process.env.CI + ciTasks.push('dump-symbols') if process.platform is 'darwin' + ciTasks.push('set-version', 'check-licenses', 'lint', 'generate-asar') + ciTasks.push('mkdeb') if process.platform is 'linux' + ciTasks.push('mktar') if process.platform is 'linux' + ciTasks.push('test') if process.platform is 'darwin' + ciTasks.push('codesign:app') if process.platform is 'darwin' and not process.env.CI + if process.platform is 'win32' + ciTasks.push('codesign:exe') if process.env.JANKY_SIGNTOOL + ciTasks.push('codesign:installer-deferred') if not process.env.JANKY_SIGNTOOL + ciTasks.push('create-windows-installer:installer') + ciTasks.push('codesign:installer') if process.env.JANKY_SIGNTOOL + ciTasks.push('codesign:cleanup') + ciTasks.push('publish-build') unless process.env.CI grunt.registerTask('ci', ciTasks)