Skip to content
Snippets Groups Projects

CI pipeline for mysql unit tests

Merged
Daniel Hornungrequested to merge
f-mysql-test into dev
3 open threads
2 files
+ 2
3
Compare changes
  • Side-by-side
  • Inline

Files

+ 1
2
@@ -28,7 +28,6 @@ variables:
DEPLOY_REF: dev
CI_REGISTRY_IMAGE: $CI_REGISTRY/caosdb/src/caosdb-mysqlbackend/testenv:latest
MYSQL_ROOT_PASSWORD: caosdb1234
# MYSQL_DATABASE: caosdb
image: $CI_REGISTRY_IMAGE
stages:
@@ -50,7 +49,7 @@ build-testenv:
script:
- cd .docker
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
# use here general latest or specific branch latest...
# use here general latest or specific branch latest...
- docker build
--pull
-t $CI_REGISTRY_IMAGE .
@@ -59,7+58,7 @@
######## Test ########
# Run the unit tests
unittests:
tags: [ docker ]
stage: test
Loading