aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2023-11-02 12:37:06 +0000
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2023-11-02 12:37:06 +0000
commit40a3c65a536090c4e021affd59ae466d8edccc51 (patch)
tree918627b0dcaa56879f59a26adee2a77eeba513a3 /.gitlab-ci.yml
parent6d9ab8ae42b2f60e5fe880bbfe422b703e372c92 (diff)
remove parameter -f from mysql commands, fixes #3417
Closes #3417 Merge request studip/studip!2321
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
1 files changed, 6 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8d834db..1b6b6af 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -252,7 +252,8 @@ test-functional:
<<: *composer-cache
policy: pull
services:
- - mariadb
+ - name: mariadb
+ command: ["--sql_mode="]
allow_failure: false
interruptible: true
before_script:
@@ -276,7 +277,8 @@ test-jsonapi:
<<: *composer-cache
policy: pull
services:
- - mariadb
+ - name: mariadb
+ command: ["--sql_mode="]
variables:
JSONAPI_XML_REPORT: $REPORT_DIR/jsonapi-report.xml
interruptible: true
@@ -310,7 +312,8 @@ test-e2e:
# needs: [lint-css, lint-js, lint-php]
image: mcr.microsoft.com/playwright:v1.33.0-jammy
services:
- - mariadb
+ - name: mariadb
+ command: ["--sql_mode="]
variables:
PHP_WEBSERVER_URL: localhost:65432
E2E_REPORT: $REPORT_DIR/e2e.xml