11 - postgresql-server-dev-9.5
17 - OSM_MEMCACHE_SERVERS="127.0.0.1"
19 - sed -e "/idle_in_transaction_session_timeout/d" -e 's/ IMMUTABLE / /' -e "s/AS '.*libpgosm.*',/AS 'libpgosm',/" -e "/^--/d" db/structure.sql > db/structure.expected
20 - psql -U postgres -c "CREATE DATABASE openstreetmap"
21 - psql -U postgres -c "CREATE EXTENSION btree_gist" openstreetmap
22 - psql -U postgres -f db/functions/functions.sql openstreetmap
23 - cp config/travis.database.yml config/database.yml
24 - cp config/example.storage.yml config/storage.yml
25 - touch config/settings.local.yml
26 - bundle exec rake db:migrate
27 - bundle exec rake i18n:js:export
28 - bundle exec rake yarn:install
30 - bundle exec rubocop -f fuubar
31 - bundle exec rake eslint
32 - bundle exec erblint .
33 - bundle exec rake db:structure:dump
34 - sed -e "/idle_in_transaction_session_timeout/d" -e 's/ IMMUTABLE / /' -e "s/AS '.*libpgosm.*',/AS 'libpgosm',/" -e "/^--/d" db/structure.sql > db/structure.actual
35 - diff -uw db/structure.expected db/structure.actual
36 - bundle exec rake test:db