forked from JeffersonLab/clas12-offline-software
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (34 loc) · 796 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
sudo: required
language: java
jdk:
- oraclejdk8
# this affects which java version is used:
addons:
apt:
packages:
- oracle-java8-installer
before_install:
- ls -lthra
- java -version
- echo "starting build..."
install:
- java -version
- ./build-coatjava.sh
script:
- ls -lthra
- which groovy
- echo "starting advanced tests..."
- cd validation/advanced-tests/
- ./run-advanced-tests.sh
- ./run-eb-tests.sh -100 electronproton
- ./run-eb-tests.sh -100 electrongamma
- ./run-eb-tests.sh -100 electronprotonC
- ./run-eb-tests.sh -100 electronneutronC
- cd -
- echo "finished advanced tests"
- mvn cobertura:cobertura &> /dev/null # for codecov
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
emails: false