.travis.yml in jdbc-nuodb-1.0.1 vs .travis.yml in jdbc-nuodb-1.2

- old
+ new

@@ -9,14 +9,22 @@ notifications: recipients: - buck.robert.j@gmail.com - rbuck@nuodb.com -before_script: - - wget http://www.nuodb.com/latest/nuodb-1.0-GA.linux.x86_64.deb --output-document=/var/tmp/nuodb.deb +before_install: + - wget -q http://www.nuodb.com/latest/nuodb-1.2.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 2 + - ${NUODB_ROOT}/bin/nuodb --chorus test --password bar --dba-user dba --dba-password baz & + - sleep 2 + - echo "create user cloud password 'user';" | ${NUODB_ROOT}/bin/nuosql test@localhost --user dba --password baz + script: - - NUODB_ROOT=/opt/nuodb bundle exec rake test install + - NUODB_ROOT=/opt/nuodb bundle exec rake spec install after_script: - sudo dpkg -r nuodb