mirror of
https://github.com/ACINQ/eclair.git
synced 2025-02-22 22:25:26 +01:00
* Upgrade to JDK11 Eclair can be built and used on Oracle JDK 1.8 or OpenJDK 11. JavaFX is now embedded in eclair-node-gui and does not need to be installed separately. * Install: update java download links OpenJDK 11 is now our recommendation. Tell users to download java from https://jdk.java.net/11 * README: Rewrite installation instructions
25 lines
487 B
YAML
25 lines
487 B
YAML
sudo: required
|
|
services:
|
|
-docker
|
|
dist: trusty
|
|
language: scala
|
|
scala:
|
|
- 2.11.11
|
|
env:
|
|
- export LD_LIBRARY_PATH=/usr/local/lib
|
|
before_install:
|
|
- wget http://mirror.ibcp.fr/pub/apache/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.zip
|
|
- unzip -qq apache-maven-3.5.4-bin.zip
|
|
- export M2_HOME=$PWD/apache-maven-3.5.4
|
|
- export PATH=$M2_HOME/bin:$PATH
|
|
script:
|
|
- mvn install
|
|
cache:
|
|
directories:
|
|
- .autoconf
|
|
- $HOME/.m2
|
|
jdk:
|
|
- openjdk11
|
|
notifications:
|
|
email:
|
|
- ops@acinq.fr
|