-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (29 loc) · 824 Bytes
/
.travis.yml
File metadata and controls
31 lines (29 loc) · 824 Bytes
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
os: linux
dist: trusty
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
jdk:
- openjdk8
- oraclejdk8
- openjdk13
- oraclejdk13
- openjdk14
- oraclejdk14
script:
- sudo apt-get update
- # sudo apt-get install git && echo installed git so that hugo can inject commit data into the website
- sudo apt-get install gnupg2 && gpg --version
- # git --version
- # sudo apt-get install snapd
- # sudo snap install hugo
- # export PATH
- # /snap/bin/hugo version
- ./gradlew -PHUGO_EXEC="/snap/bin/hugo" -info --stacktrace clean check test integrationTest jacocoTestReport
after_success:
- bash <(curl -s https://codecov.io/bash)