forked from AmadeusITGroup/sonar-stash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (36 loc) · 780 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
44
45
46
language: java
matrix:
fast_finish: true
include:
# The basic unit-tests environments
- jdk: oraclejdk8
env:
- TEST_SUITE=unit
- SQ_RUN=yes
# It is necessary only to run the analysis once ;)
# The integration tests environments
- jdk: openjdk8
env:
- TEST_SUITE=integration
- SONARQUBE_VERSION=7.6
- jdk: openjdk8
env:
- TEST_SUITE=integration
- SONARQUBE_VERSION=6.7
- jdk: openjdk8
env:
- TEST_SUITE=dependency-check
addons:
sonarcloud:
organization: "default"
install:
- mvn dependency:go-offline
script:
- ./.travis/script.sh
- ./.travis/runSonarQubeAnalysis.sh
sudo: false
dist: trusty
git:
depth: false
notifications:
email: false