-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (28 loc) · 1017 Bytes
/
.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: ruby
rvm:
- 2.0.0
- 1.9.3
env:
- NUODB_ROOT=/opt/nuodb NUODB_VERSION=1.1.1
- NUODB_ROOT=/opt/nuodb NUODB_VERSION=1.1
- NUODB_ROOT=/opt/nuodb NUODB_VERSION=1.0.2
- NUODB_ROOT=/opt/nuodb NUODB_VERSION=1.0.1
notifications:
recipients:
- buck.robert.j@gmail.com
- rbuck@nuodb.com
- lbayas@nuodb.com
before_install:
- wget http://www.nuodb.com/latest/releases/nuodb-${NUODB_VERSION}.linux.x64.deb --output-document=/var/tmp/nuodb.deb
- sudo dpkg -i /var/tmp/nuodb.deb
- sleep 2
before_script:
- ${NUODB_ROOT}/bin/nuodb --chorus test --password bar --dba-user dba --dba-password baz --verbose debug --archive /var/tmp/nuodb --initialize --force &
- sleep 4
- ${NUODB_ROOT}/bin/nuodb --chorus test --password bar --dba-user dba --dba-password baz &
- sleep 4
- echo "create user cloud password 'user';" | ${NUODB_ROOT}/bin/nuosql test@localhost --user dba --password baz
script:
- NUODB_ROOT=/opt/nuodb bundle exec rake spec
after_script:
- sudo dpkg -r nuodb