diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-06-28 14:19:55 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-06-28 14:19:55 +0100 |
commit | ed7d4517d86358a17a93250aef67458ab9ce2436 (patch) | |
tree | 39914582195dcf49e16967254c154a936e26a299 | |
parent | 1b5ca56c008526fc4ed2cab58c648de557d9826a (diff) |
Build configuration file for Travis (http://about.travis-ci.org/)
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..a19af8e6a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: ruby +rvm: + - 1.8.7 +before_install: + - git submodule update --init --recursive + - sudo apt-get update + - sudo apt-get install `cut -d " " -f 1 config/packages | egrep -v "(^#|wkhtml|bundler)"` +before_script: + - psql -c 'create database foi_test template template0 encoding sql_ascii;' -U postgres + - co database.yml database.yml-test |