mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Work around outdated OracleJDK8 on Travis CI server
The Gradle JavaFX plugin requires Oracle JDK 8u20 or better. Travis CI currently runs something older, and does not have a roadmap for upgrading. This commit instructs the Travis CI VM to install JDK 8u20 via `apt` prior to actually beginning the build. See #66
This commit is contained in:
parent
bfa585583f
commit
153eb5326b
@ -1,6 +1,12 @@
|
||||
language: java
|
||||
jdk: oraclejdk8
|
||||
|
||||
install:
|
||||
- "sudo apt-get purge openjdk*"
|
||||
- "sudo add-apt-repository -y ppa:webupd8team/java"
|
||||
- "sudo apt-get update"
|
||||
- "sudo apt-get install oracle-java8-installer"
|
||||
|
||||
notifications:
|
||||
irc:
|
||||
channels: chat.freenode.net#bitsquare
|
||||
|
Loading…
Reference in New Issue
Block a user