X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2c262b9bb4fd14db4a656c6125f5760f332723d2..d02ea8a1332fc7c32749ab479d68d44e2e76cdfa:/.travis.yml diff --git a/.travis.yml b/.travis.yml index 49da7b493..1af422452 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,20 @@ +sudo: false language: ruby rvm: - 1.9.3 +cache: bundler addons: postgresql: 9.1 + apt: + packages: + - postgresql-server-dev-9.1 services: - memcached env: global: - OSM_MEMCACHE_SERVERS="127.0.0.1" before_script: - - sudo apt-get update - - sudo apt-get install postgresql-server-dev-9.1 + - cp config/example.application.yml config/application.yml - psql -U postgres -c "CREATE DATABASE openstreetmap" - psql -U postgres -c "CREATE EXTENSION btree_gist" openstreetmap - make -C db/functions libpgosm.so @@ -21,4 +25,5 @@ before_script: - bundle exec rake db:migrate script: - bundle exec rubocop -f fuubar + - bundle exec rake jshint - bundle exec rake test