]> git.openstreetmap.org Git - rails.git/blob - .travis.yml
Use settings.local.yml to enable memcache during travis runs
[rails.git] / .travis.yml
1 dist: xenial
2 language: ruby
3 rvm:
4   - 2.5.3
5 cache:
6   - bundler
7 addons:
8   postgresql: 9.5
9   apt:
10     packages:
11       - libarchive-dev
12 services:
13   - memcached
14 before_script:
15   - sed -e 's/ IMMUTABLE / /' -e "/^--/d" db/structure.sql > db/structure.expected
16   - psql -U postgres -c "CREATE DATABASE openstreetmap"
17   - psql -U postgres -c "CREATE EXTENSION btree_gist" openstreetmap
18   - psql -U postgres -f db/functions/functions.sql openstreetmap
19   - cp config/travis.database.yml config/database.yml
20   - cp config/example.storage.yml config/storage.yml
21   - echo -e "---\nmemcache_servers:\n  - 127.0.0.1" > config/settings.local.yml
22   - bundle exec rake db:migrate
23   - bundle exec rake i18n:js:export
24   - bundle exec rake yarn:install
25 script:
26   - bundle exec rubocop -f fuubar
27   - bundle exec rake eslint
28   - bundle exec erblint .
29   - bundle exec rake db:structure:dump
30   - sed -e "/idle_in_transaction_session_timeout/d" -e 's/ IMMUTABLE / /' -e "/^--/d" db/structure.sql > db/structure.actual
31   - diff -uw db/structure.expected db/structure.actual
32   - bundle exec rake test:db