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)