summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-30 16:07:50 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-30 16:07:50 +0200
commit2bebbeb1919e1d370ac5c0668e0db5ea63e73292 (patch)
tree759d675b621eed86b20f14abe448e83fa8d22562 /.gitlab-ci.yml
parent175c335810817ff3e989f368889274d3f09c08b1 (diff)
Installation: Added migrations for install.sql and update.sql files
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 70e1d59b..c15a59db 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,15 +29,14 @@ before_script:
- &before_install_xdebug |-
pecl install xdebug
docker-php-ext-enable xdebug
- # MySQL DB
- - &before_setup_mysql |-
- apt install -yqq mariadb-client
- mysql -h "$MYSQL_HOST" -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE" < db/install.sql
- mysql -h "$MYSQL_HOST" -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE" < db/update.sql
# Install Composer
- &before_install_composer |-
curl -sS https://getcomposer.org/installer | php -- --no-ansi --install-dir /usr/local/bin/ --filename composer
composer --no-ansi install
+ # MySQL DB
+ - &before_setup_mysql |-
+ chmod +x ./bin/migrate
+ ./bin/migrate
# Install Node.js and Yarn
- &before_install_yarn |-
apt -yqq install gnupg2 apt-transport-https