]> git.openstreetmap.org Git - rails.git/commitdiff
Use settings.local.yml to enable memcache during travis runs
authorTom Hughes <tom@compton.nu>
Mon, 30 Dec 2019 00:50:34 +0000 (00:50 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 30 Dec 2019 01:01:42 +0000 (01:01 +0000)
.travis.yml

index 996495c0dde16fe946a40b20f0d041a40aa8584e..db9128412bc006d921684bd2764af1725293debf 100644 (file)
@@ -11,9 +11,6 @@ addons:
       - libarchive-dev
 services:
   - memcached
-env:
-  global:
-    - OSM_MEMCACHE_SERVERS="127.0.0.1"
 before_script:
   - sed -e 's/ IMMUTABLE / /' -e "/^--/d" db/structure.sql > db/structure.expected
   - psql -U postgres -c "CREATE DATABASE openstreetmap"
@@ -21,7 +18,7 @@ before_script:
   - psql -U postgres -f db/functions/functions.sql openstreetmap
   - cp config/travis.database.yml config/database.yml
   - cp config/example.storage.yml config/storage.yml
-  - touch config/settings.local.yml
+  - echo -e "---\nmemcache_servers:\n  - 127.0.0.1" > config/settings.local.yml
   - bundle exec rake db:migrate
   - bundle exec rake i18n:js:export
   - bundle exec rake yarn:install