Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2020-01-20 18:03:24 +01:00
Родитель 1340d4a900
Коммит e4babe261f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -50,6 +50,9 @@ before_install:
# XDebug is only needed if we report coverage -> speeds up other builds (7.3 has no xdebug yet)
- if [[ "$PHP_COVERAGE" = "FALSE" ]]; then phpenv config-rm xdebug.ini || true; fi
# Use latest node for js tests
- if [[ "$TEST_JS" = "TRUE" ]]; then nvm install node; fi
# Set up DB
- if [[ "$DB" == 'pgsql' ]]; then createuser -U travis -s nc_autotest; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'create database nc_autotest;'; fi