Skip to content

Commit

Permalink
build: replace jabba by proper debian installation
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph committed Apr 19, 2021
1 parent b7f057d commit 07f5935
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ git:
before_install:
# make comparing to origin/master work
- git remote set-branches --add origin master && git fetch
# using jabba for custom jdk management
- curl -sL https://raw.githubusercontent.com/shyiko/jabba/0.11.1/install.sh | bash && . ~/.jabba/jabba.sh
- jabba install [email protected]
- jabba use "[email protected]"
- whereis java
- java -version

addons:
apt:
sources:
# Official debian package for AdoptOpenJDK from https://adoptopenjdk.net/installation.html#linux-pkg
- sourceline: deb https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ xenial main
key_url: https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public
packages:
- graphviz
- graphviz
- adoptopenjdk-8-hotspot

before_cache:
- find $HOME/.ivy2 -name "ivydata-*.properties" -print -delete
Expand All @@ -30,12 +32,14 @@ cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot
- $HOME/.jabba/jdk
- $HOME/.cache/coursier

env:
# override default (release to maven central) to only close and go to staging repo
- CI_SONATYPE_RELEASE="; sonatypePrepare; sonatypeBundleUpload; sonatypeClose"
global:
- JAVA_HOME=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64
- PATH=/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64/bin:$PATH
# override default (release to maven central) to only close and go to staging repo
- CI_SONATYPE_RELEASE="; sonatypePrepare; sonatypeBundleUpload; sonatypeClose"

script:
- sbt -jvm-opts .jvmopts-travis "$CMD"
Expand Down

0 comments on commit 07f5935

Please sign in to comment.