forked from find-sec-bugs/find-sec-bugs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (24 loc) · 823 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
language: java
cache:
directories:
- $HOME/.m2
jdk:
- openjdk8
- openjdk9
- openjdk10
- openjdk11
# It is unlikely that OpenJDK Early Access (openjdk-ea) it will work in the near future, the ASM library supports only bytecode from official release version.
# - openjdk-ea
#matrix:
# allow_failures:
# - jdk: openjdk-ea
# Activate container based infra https://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
install: mvn clean -B -V
script: mvn clean test -Pjacoco -Ptravisci -B -V
after_success:
# Codecov.io
# Report available here : https://codecov.io/gh/find-sec-bugs/find-sec-bugs
# The tests are runned with the script command (mvn clean test...)
# Docs: https://docs.codecov.io/v1.0/docs/about-the-codecov-bash-uploader
- bash <(curl -s https://codecov.io/bash)