mirror of
https://github.com/ACINQ/eclair.git
synced 2024-11-20 02:27:32 +01:00
25 lines
488 B
YAML
25 lines
488 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.3/binaries/apache-maven-3.6.3-bin.zip
|
|
- unzip -qq apache-maven-3.6.3-bin.zip
|
|
- export M2_HOME=$PWD/apache-maven-3.6.3
|
|
- export PATH=$M2_HOME/bin:$PATH
|
|
script:
|
|
- mvn scoverage:report
|
|
cache:
|
|
directories:
|
|
- .autoconf
|
|
- $HOME/.m2
|
|
jdk:
|
|
- openjdk11
|
|
notifications:
|
|
email:
|
|
- ops@acinq.fr |