Skip to content

Commit

Permalink
split up all the build rake tasks for build to work
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jun 17, 2016
1 parent e3367a4 commit aee3d87
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,13 @@ if (python?)
task :test => [ :test_py ]
end

task :build => [:all, :firefox, :remote, :selenium, :tests]
task :build do
Rake::Task[:all].execute
Rake::Task[:firefox].execute
Rake::Task[:remote].execute
Rake::Task[:selenium].execute
Rake::Task[:tests].execute
end

desc 'Clean build artifacts.'
task :clean do
Expand Down

0 comments on commit aee3d87

Please sign in to comment.