Skip to content

Commit 6ace25c

Browse files
committed
Another attemps
1 parent 6b4455c commit 6ace25c

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

.github/workflows/go.yml

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)