1
0
Fork 0
mirror of https://github.com/ACINQ/eclair.git synced 2025-02-23 22:46:44 +01:00
eclair/.travis.yml
Bastien Teinturier 71da6776e1
Fix maven mirror (#1120)
* Fix maven mirror (and move to a US mirror)
* Use maven 3.6.2
2019-09-03 11:40:53 +00:00

27 lines
547 B
YAML

sudo: required
services:
-docker
dist: trusty
language: scala
scala:
- 2.11.12
env:
- export LD_LIBRARY_PATH=/usr/local/lib
before_install:
- wget https://apache.osuosl.org/maven/maven-3/3.6.2/binaries/apache-maven-3.6.2-bin.zip
- unzip -qq apache-maven-3.6.2-bin.zip
- export M2_HOME=$PWD/apache-maven-3.6.2
- export PATH=$M2_HOME/bin:$PATH
script:
- mvn scoverage:report
cache:
directories:
- .autoconf
- $HOME/.m2
jdk:
- openjdk11
notifications:
email:
- ops@acinq.fr
after_success:
- bash <(curl -s https://codecov.io/bash)