Skip to content

Commit

Permalink
Sort the travis builds by the typical amount of time they take to run…
Browse files Browse the repository at this point in the history
…, descending. If they are kicked off in order, they'll be more likely to finish around the same time.
  • Loading branch information
motlin committed Dec 26, 2015
1 parent 94d308c commit ef98041
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ matrix:
include:
- jdk: oraclejdk8
env:
- DESC="compile all modules"
- CMD="mvn install --activate-profiles all -DskipTests=true --batch-mode --show-version --errors"
- DESC="findbugs"
- CMD="mvn install findbugs:check --projects '!scala-unit-tests,!jmh-scala-tests,!jmh-tests' --activate-profiles all -DskipTests=true --batch-mode --show-version --errors"

- jdk: oraclejdk8
env:
- DESC="checkstyle"
- CMD="mvn install checkstyle:check --activate-profiles all -DskipTests=true --batch-mode --show-version --errors"

- jdk: oraclejdk8
env:
Expand All @@ -25,13 +30,8 @@ matrix:

- jdk: oraclejdk8
env:
- DESC="checkstyle"
- CMD="mvn install checkstyle:check --activate-profiles all -DskipTests=true --batch-mode --show-version --errors"

- jdk: oraclejdk8
env:
- DESC="findbugs"
- CMD="mvn install findbugs:check --projects '!scala-unit-tests,!jmh-scala-tests,!jmh-tests' --activate-profiles all -DskipTests=true --batch-mode --show-version --errors"
- DESC="compile all modules"
- CMD="mvn install --activate-profiles all -DskipTests=true --batch-mode --show-version --errors"

script: eval $CMD

Expand Down

0 comments on commit ef98041

Please sign in to comment.