From: Tom Hughes Date: Wed, 24 Apr 2019 09:26:50 +0000 (+0100) Subject: Teach travis to validate the database schema X-Git-Tag: live~2569 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/6de1744ab09ee73bd7cd1d20887906b96b43b44e Teach travis to validate the database schema --- diff --git a/.travis.yml b/.travis.yml index 8e61677fd..459c36f4f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ env: global: - OSM_MEMCACHE_SERVERS="127.0.0.1" before_script: + - 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 - psql -U postgres -c "CREATE DATABASE openstreetmap" - psql -U postgres -c "CREATE EXTENSION btree_gist" openstreetmap - make -C db/functions libpgosm.so @@ -30,4 +31,7 @@ script: - bundle exec rubocop -f fuubar - bundle exec rake eslint:run_all - bundle exec erblint . + - bundle exec rake db:structure:dump + - 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 + - diff -uw db/structure.expected db/structure.actual - bundle exec rake test:db