Skip to content

Commit

Permalink
update travis configuration
Browse files Browse the repository at this point in the history
Travis allows many concurrent builds and is easier to
work with for pull requests at the moment over Circle.
`mvn test` runs in half the time (it only runs the
tests once), and it can be easily configured to build on
pushes, not just the tip of branches.

1. use java defaults, just `mvn test`
2. use travis container infrastructure via `sudo: false`
3. test again JDK8
  • Loading branch information
frenchy64 committed Aug 2, 2015
1 parent 35f9a6b commit e86a101
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
@@ -1,2 +1,4 @@
language: clojure
script: lein test
language: java
jdk:
- oraclejdk8
sudo: false

0 comments on commit e86a101

Please sign in to comment.