]> git.openstreetmap.org Git - rails.git/blobdiff - .travis.yml
Update to iD v1.9.1
[rails.git] / .travis.yml
index 49da7b493a055e74df53245253e37de203af555c..6c41bc8b82521802dc6ec577ea93e38b2ceff9f0 100644 (file)
@@ -1,16 +1,20 @@
+sudo: false
 language: ruby
 rvm:
-  - 1.9.3
+  - 2.1.8
+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