diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-02-21 11:43:03 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-02-21 15:31:33 +0100 |
| commit | 303b891d02291152899f25678ad1c02ec9bc2ba7 (patch) | |
| tree | d6494482249797e0537b34329f70528b9003b0a1 /.gitlab-ci.yml | |
| parent | f40d29e98b2689e47d606710f04c830631815d1e (diff) | |
fixes #3761
Closes #3761
Merge request studip/studip!2633
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d834db..f749e4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -64,6 +64,11 @@ stages: paths: - .npm +.definitions: + mariadb-service: &mariadb-service + - name: mariadb + command: [ "--sql_mode=","--character-set-client=utf8","--character-set-server=utf8","--collation-server=utf8_unicode_ci"] + build-composer: stage: build needs: [] @@ -252,7 +257,7 @@ test-functional: <<: *composer-cache policy: pull services: - - mariadb + - *mariadb-service allow_failure: false interruptible: true before_script: @@ -276,7 +281,7 @@ test-jsonapi: <<: *composer-cache policy: pull services: - - mariadb + - *mariadb-service variables: JSONAPI_XML_REPORT: $REPORT_DIR/jsonapi-report.xml interruptible: true |
