-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (24 loc) · 689 Bytes
/
.travis.yml
File metadata and controls
31 lines (24 loc) · 689 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
dist: xenial
language: java
jdk:
- openjdk8
services:
- docker
before_install:
- docker pull rethinkdb:latest
- docker run -d -p 28015:28015 -p 29015:29015 -p 8080:8080 rethinkdb:latest
- docker ps -a
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/
# Exclude the signArchives tasks, since the deploy configuration will be
# added when vault is set up. The secrets should come from there.
# TODO: @gabor-boros Integrate vault
install:
- ./gradlew assemble --exclude-task signArchives
notifications:
email: false