Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@ language: java
sudo: false

jdk:
- oraclejdk8
- openjdk11
git:
submodules: false
install: true
script: ./travis.sh

cache:
directories:
- '$HOME/.m2/repository'

before_cache:
# remove all the artifacts that are installed in local repo because of mvn deploy
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>49</version>
<version>51</version>
</parent>

<groupId>org.sonarsource.python</groupId>
Expand Down
4 changes: 1 addition & 3 deletions travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ set -euo pipefail

function installTravisTools {
mkdir -p ~/.local
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v55 | tar zx --strip-components 1 -C ~/.local
curl -sSL https://github.com/SonarSource/travis-utils/tarball/v56 | tar zx --strip-components 1 -C ~/.local
source ~/.local/bin/install
}

installTravisTools
source ~/.local/bin/installMaven35
source ~/.local/bin/installJDK8

export DEPLOY_PULL_REQUEST=true

Expand Down