Skip to content
Snippets Groups Projects

CI pipeline for mysql unit tests

Merged Daniel Hornung requested to merge f-mysql-test into dev
2 files
+ 19
9
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 10
9
@@ -62,15 +62,16 @@ build-testenv:
unittests:
tags: [ docker ]
stage: test
script:
- cp config.defaults .config
- echo 'DATABASE_USER_HOST_LIST="%,"' >> .config
- echo "MYSQL_USER_PASSWORD=$MYSQL_ROOT_PASSWORD" >> .config
- echo "MYSQL_HOST=mysql" >> .config
- sleep 10
- make install
- ./utils/make_db restore_db tests/example.dump.sql
- ./tests/test_utils.sh
# script:
# - cp config.defaults .config
# - echo 'DATABASE_USER_HOST_LIST="%,"' >> .config
# - echo "MYSQL_USER_PASSWORD=$MYSQL_ROOT_PASSWORD" >> .config
# - echo "MYSQL_HOST=mysql" >> .config
# - sleep 10
# - make install
# - ./utils/make_db restore_db tests/example.dump.sql
# - ./tests/test_utils.sh
include: "/include-test.yml"
######## Deploy ########
Loading