Skip to content

Commit

Permalink
chore: do not execute checkstyle for all jobs (#2799)
Browse files Browse the repository at this point in the history
  • Loading branch information
monperrus authored and surli committed Nov 30, 2018
1 parent 85ab334 commit 3829f3e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ env:
- SCRIPT=travis-maven339-jdk8.sh
- SCRIPT=travis-spoon-decompiler.sh

# in langage:java, Travis executes by default "mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V"
# This is not what we want because:
# - it executes checkstyle (we have a specific job for this)
# - it's useless ("mvn test" later does all the necessary tasks automatically)
# - it makes the build longer (we want a fast job)
install: true

script: ./chore/travis/$SCRIPT

cache:
Expand Down

0 comments on commit 3829f3e

Please sign in to comment.