Commit c529e096 authored by David Lawrence's avatar David Lawrence

- Force use of PostgreSQL 9.1

- Configure DB users in travis.yml
parent 3fbd84bb
language: perl language: perl
addons:
postgresql: "9.1"
perl: perl:
- 5.10 - 5.10
- 5.12 - 5.12
...@@ -29,6 +33,10 @@ before_install: ...@@ -29,6 +33,10 @@ before_install:
install: true install: true
before_script:
- mysql -u root mysql -e "GRANT ALL PRIVILEGES ON *.* TO bugs@localhost IDENTIFIED BY 'bugs'; FLUSH PRIVILEGES;"
- psql -c "CREATE USER bugs WITH PASSWORD 'bugs' CREATEDB;" -U postgres
script: ./qa/travis.sh script: ./qa/travis.sh
after_failure: after_failure:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment