Skip to content
This repository has been archived by the owner on Feb 2, 2021. It is now read-only.

Commit

Permalink
make 'script:' in .travis.yml do everything.
Browse files Browse the repository at this point in the history
Previously I had it doing additional testing via the 'after_success:'
option, but if those scripts failed, they wouldn't fail the build.
Let's do everything in 'script:'.
  • Loading branch information
fpotter committed Jul 9, 2013
1 parent 8c14b08 commit 3e919d3
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .travis.yml
@@ -1,7 +1,2 @@
language: objective-c
script: ./build.sh
after_success:
- # With xctool built, now build and test xctool using xctool...
- ./xctool.sh -workspace xctool.xcworkspace -scheme xctool build
- ./xctool.sh -workspace xctool.xcworkspace -scheme xctool build-tests
- ./xctool.sh -workspace xctool.xcworkspace -scheme xctool run-tests
script: ./build.sh && ./xctool.sh -workspace xctool.xcworkspace -scheme xctool build build-tests run-tests

0 comments on commit 3e919d3

Please sign in to comment.