forked from calatrava/calatrava
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up the travis script, closer to something that has a chance t…
…o work.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
language: ruby | ||
rvm: 1.9.3 | ||
before_script: | ||
- rm -rf sample/ | ||
- rm -rf test/ | ||
script: | ||
- bundle exec rake build test | ||
- bundle exec rake test | ||
after_script: | ||
- bin/calatrava create sample --dev | ||
- rvm rvmrc trust sample/ | ||
- cd sample | ||
- bin/calatrava create test --dev | ||
- rvm rvmrc trust test/ | ||
- cd test | ||
- bundle install | ||
- bundle exec rake bootstrap | ||
- bundle exec rake clean precommit:mw | ||
- bundle exec rake droid:build ios:build web:build | ||
- bundle exec rake kernel:spec | ||
- bundle exec rake web:build |