File tree Expand file tree Collapse file tree 1 file changed +8
-14
lines changed
Expand file tree Collapse file tree 1 file changed +8
-14
lines changed Original file line number Diff line number Diff line change @@ -19,24 +19,18 @@ jobs:
1919 mariadb-vector :
2020 image : mariadb:11.7.2
2121 env :
22- MYSQL_ROOT_PASSWORD : password
23- MYSQL_DATABASE : perfkit_db_ci
24- MYSQL_USER : user
25- MYSQL_PASSWORD : password
26- # Disable features that cause warnings in GitHub Actions
27- MARIADB_INNODB_USE_NATIVE_AIO : " 0"
22+ MARIADB_DATABASE : perfkit_db_ci
23+ MARIADB_USER : user
24+ MARIADB_PASSWORD : password # example value of a secret
25+ MARIADB_ROOT_PASSWORD : password # example value of a secret
2826 ports :
2927 - 3306:3306
3028 # Additional options to handle GitHub Actions environment limitations
3129 options : >-
32- --health-cmd "mysqladmin ping -h localhost -u root -ppassword"
33- --health-interval 20s
34- --health-timeout 10s
35- --health-retries 15
36- --health-start-period 60s
37- --tmpfs /tmp:rw
38- --tmpfs /run/mysqld:rw
39- --ulimit nofile=65536:65536
30+ --health-cmd="healthcheck.sh --connect --innodb_initialized"
31+ --health-interval=10s
32+ --health-timeout=5s
33+ --health-retries=3
4034
4135 postgres :
4236 image : ankane/pgvector:v0.5.1
You can’t perform that action at this time.
0 commit comments