9     - postgresql-server-dev-9.1
 
  14     - OSM_MEMCACHE_SERVERS="127.0.0.1"
 
  16   - psql -U postgres -c "CREATE DATABASE openstreetmap"
 
  17   - psql -U postgres -c "CREATE EXTENSION btree_gist" openstreetmap
 
  18   - make -C db/functions libpgosm.so
 
  19   - psql -U postgres -c "CREATE FUNCTION maptile_for_point(int8, int8, int4) RETURNS int4 AS '${PWD}/db/functions/libpgosm', 'maptile_for_point' LANGUAGE C STRICT" openstreetmap
 
  20   - psql -U postgres -c "CREATE FUNCTION tile_for_point(int4, int4) RETURNS int8 AS '${PWD}/db/functions/libpgosm', 'tile_for_point' LANGUAGE C STRICT" openstreetmap
 
  21   - psql -U postgres -c "CREATE FUNCTION xid_to_int4(xid) RETURNS int4 AS '${PWD}/db/functions/libpgosm', 'xid_to_int4' LANGUAGE C STRICT" openstreetmap
 
  22   - cp config/travis.database.yml config/database.yml
 
  23   - bundle exec rake db:migrate
 
  25   - bundle exec rubocop -f fuubar
 
  26   - bundle exec rake jshint
 
  27   - bundle exec rake test