Skip to content

Commit

Permalink
Try to fix Firebird connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot committed Feb 16, 2013
1 parent e5aa596 commit 2f1fbb2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Expand Up @@ -17,12 +17,11 @@ before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-dev libboost-date-time-dev libmyodbc unixodbc-dev odbc-postgresql firebird2.5-super firebird2.5-dev
- sudo odbcinst -i -d -f /usr/share/libmyodbc/odbcinst.ini

after_install:
# See: Non-interactive setup for travis-ci.org
# http://tech.groups.yahoo.com/group/firebird-support/message/120883
#- sudo dpkg-reconfigure -f noninteractive firebird2.5-super
- sudo sed /ENABLE_FIREBIRD_SERVER=/s/no/yes/ -i /etc/default/firebird2.5
- cat /etc/default/firebird2.5
- sudo service firebird2.5-super start

before_script:
Expand All @@ -31,7 +30,7 @@ before_script:
- psql --version
- psql -c 'create database soci_test;' -U postgres
- isql-fb -z -q -i /dev/null # --version
- echo 'CREATE DATABASE "/tmp/soci_test.fdb" PAGE_SIZE = 16384;' > /tmp/create_soci_test.sql
- echo 'CREATE DATABASE "LOCALHOST:/tmp/soci_test.fdb" PAGE_SIZE = 16384;' > /tmp/create_soci_test.sql
- isql-fb -u SYSDBA -p masterkey -i /tmp/create_soci_test.sql -q
- ls -l /tmp/

Expand Down

0 comments on commit 2f1fbb2

Please sign in to comment.