File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,25 @@ jobs:
18
18
unit-tests :
19
19
services :
20
20
sqlserver :
21
- image : mariadb
21
+ image : ${{ matrix.SQL }}
22
22
ports :
23
23
- 3306:3306
24
24
env :
25
25
MYSQL_ROOT_PASSWORD : root
26
- options : --health-cmd="healthcheck.sh --connect --innodb_initialized" --health-interval=10s --health-timeout=5s --health-retries=3
26
+ options : ${{ matrix.SQL_OPTIONS }} --health-interval=10s --health-timeout=5s --health-retries=3
27
27
container :
28
28
image : domjudge/gitlabci:24.04
29
29
strategy :
30
30
matrix :
31
31
PHPVERSION : [8.1]
32
- TEST : [UNIT]
32
+ TEST : [UNIT,E2E]
33
+ CRAWL_SHADOW_MODE : [0]
34
+ SQL_OPTIONS : [--health-cmd="healthcheck.sh --connect --innodb_initialized"]
35
+ include :
36
+ - PHPVERSION : 8.4
37
+ TEST : UNIT
38
+ SQL : mysql
39
+ SQL_OPTIONS : --health-cmd="mysqladmin ping"
33
40
runs-on : ubuntu-latest
34
41
steps :
35
42
- uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments