We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 234c1ea + c76dbbc commit df135b2Copy full SHA for df135b2
.travis.yml
@@ -4,5 +4,13 @@ scala:
4
- 2.10.4
5
- 2.11.2
6
7
-script:
8
- - sbt "test:compile"
+addons:
+ postgresql: "9.3"
9
+
10
+before_script:
11
+ - psql -c "CREATE ROLE sa WITH SUPERUSER LOGIN PASSWORD 'sa';" -U postgres
12
+ - psql -c "CREATE DATABASE scalikejdbc;" -U postgres
13
+ - psql -c "CREATE DATABASE scalikejdbc2;" -U postgres
14
+ - mysql -e 'GRANT ALL ON *.* TO sa@"localhost"IDENTIFIED BY "sa";FLUSH PRIVILEGES;' -uroot
15
+ - mysql -e "CREATE DATABASE scalikejdbc;" -usa -psa
16
0 commit comments