-
Notifications
You must be signed in to change notification settings - Fork 46
/
.travis.yml
35 lines (35 loc) · 1.15 KB
/
.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
language: scala
jdk:
- openjdk7
scala:
- 2.11.2
branches:
only:
- master
notifications:
email:
recipients:
- fwbrasil@gmail.com
services:
- mongodb
env:
- travis=true category=memory
- travis=true category=prevalent
- travis=true category=mongo
- travis=true category=relational
- travis=true category=relational_mem
- travis=true category=polyglot
before_script:
- mysql -u root -e "CREATE USER 'finagle'@'localhost' IDENTIFIED BY 'finagle';"
- mysql -u root -e "GRANT ALL PRIVILEGES ON * . * TO 'finagle'@'localhost';"
- mysql -e 'create database activate_test;'
- mysql -e 'create database activate_test_finagle;'
- mysql -e 'create database activate_test_async;'
- mysql -e 'create database activate_test_polyglot;'
- mysql -e 'create database activate_test_polyglot_async;'
- psql -c 'create database activate_test;' -U postgres
- psql -c 'create database activate_test_async;' -U postgres
- psql -c 'create database activate_test_polyglot;' -U postgres
- psql -c 'create database activate_test_polyglot_async;' -U postgres
- sleep 10
- mongo mydb_test --eval 'db.addUser("activate_test", "activate_test");'