Revert "Disable specs (again) to allow caching"

This reverts commit b3d3b52d3d.
This commit is contained in:
Antonio Scandurra
2016-07-20 13:01:00 +02:00
parent d2cb36e3a0
commit be134ce3c9

View File

@@ -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)