From 0fca2b6ee09fc8f2abb2c62297cf5b4e02cf4a95 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 12 Jul 2019 13:43:57 -0700 Subject: [PATCH] chore: increase vm.max_map_count This is mainly used for elasticsearch but adding it to the generic test suite for all datastore plugins makes it easier to copy the travis config to each plugin. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 28d2958..812a515 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,5 +4,6 @@ env: - DOKKU_VERSION=master - DOKKU_VERSION=v0.17.0 install: make setup +before_script: sudo sysctl -w vm.max_map_count=262144 script: make test after_failure: make report