Download chromedriver along with atom-shell

This commit is contained in:
Max Brunsfeld 2015-02-05 12:59:48 -08:00
parent 28f280183e
commit c927101bb2

View File

@ -222,7 +222,7 @@ module.exports = (grunt) ->
grunt.registerTask('test', ['shell:kill-atom', 'run-specs']) grunt.registerTask('test', ['shell:kill-atom', 'run-specs'])
grunt.registerTask('docs', ['markdown:guides', 'build-docs']) grunt.registerTask('docs', ['markdown:guides', 'build-docs'])
ciTasks = ['output-disk-space', 'download-atom-shell', 'build'] ciTasks = ['output-disk-space', 'download-atom-shell', 'download-atom-shell-chromedriver', 'build']
ciTasks.push('dump-symbols') if process.platform isnt 'win32' ciTasks.push('dump-symbols') if process.platform isnt 'win32'
ciTasks.push('set-version', 'check-licenses', 'lint') ciTasks.push('set-version', 'check-licenses', 'lint')
ciTasks.push('mkdeb') if process.platform is 'linux' ciTasks.push('mkdeb') if process.platform is 'linux'
@ -232,6 +232,6 @@ module.exports = (grunt) ->
ciTasks.push('publish-build') ciTasks.push('publish-build')
grunt.registerTask('ci', ciTasks) grunt.registerTask('ci', ciTasks)
defaultTasks = ['download-atom-shell', 'build', 'set-version'] defaultTasks = ['download-atom-shell', 'download-atom-shell-chromedriver', 'build', 'set-version']
defaultTasks.push 'install' unless process.platform is 'linux' defaultTasks.push 'install' unless process.platform is 'linux'
grunt.registerTask('default', defaultTasks) grunt.registerTask('default', defaultTasks)