Skip to content

Commit 68faa46

Browse files
author
Michael Vasseur
committed
Properly start the containers again.
1 parent c61b03a commit 68faa46

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/integration.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ jobs:
1919
options: --privileged --cgroupns=host --init
2020
strategy:
2121
matrix:
22-
sql: [mariadb, mysql]
22+
include:
23+
- sql: mariadb
24+
sql_options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
25+
- sql: mysql
26+
sql_options: --mysql-native-password --authentication_policy=mysql_native_password
2327
services:
2428
sqlserver:
2529
image: ${{ matrix.sql }}
@@ -29,7 +33,7 @@ jobs:
2933
MYSQL_ROOT_PASSWORD: root
3034
MYSQL_USER: domjudge
3135
MYSQL_PASSWORD: domjudge
32-
options: --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
36+
options: ${{ matrix.sql_options }}
3337
steps:
3438
- uses: actions/checkout@v4
3539
- name: info

0 commit comments

Comments
 (0)