[go: up one dir, main page]

Menu

[bd93ce]: / .travis.yml  Maximize  Restore  History

Download this file

29 lines (22 with data), 751 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
language: java
jdk: oraclejdk8
install:
- mkdir /tmp/dynamodb
- wget -O - http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest | tar xz --directory /tmp/dynamodb
services:
- mongodb
- redis-server
- memcached
addons:
postgresql: "9.3"
before_script:
- psql -c 'create database orbit;' -U postgres
- java -Djava.library.path=/tmp/dynamodb/DynamoDBLocal_lib -jar /tmp/dynamodb/DynamoDBLocal.jar -inMemory &
script: "mvn test -P withMongoTests,withDynamoDBTests,withPostgresTests,withRedisTests,withMemcachedTests,withScala,withLDAPTests"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/066a8197f92d460e8530
on_success: always
on_failure: always
on_start: false