Cut anchors currently unsupported by GHA

This commit is contained in:
Laurent Indermuehle 2023-01-03 14:07:54 +01:00
parent 2149261e92
commit 589a0decfd
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09

View file

@ -94,7 +94,7 @@ jobs:
- 3307:3306 - 3307:3306
# We write our own health-cmd because the mariadb container does not # We write our own health-cmd because the mariadb container does not
# provide a healthcheck # provide a healthcheck
options: &healthcheck > options: >
--health-cmd mysqladmin ping -P 3306 -pmsandbox --health-cmd mysqladmin ping -P 3306 -pmsandbox
| grep alive | grep alive
|| exit 1 || exit 1
@ -104,14 +104,20 @@ jobs:
MARIADB_ROOT_PASSWORD: msandbox MARIADB_ROOT_PASSWORD: msandbox
ports: ports:
- 3308:3306 - 3308:3306
options: *healthcheck options: >
--health-cmd mysqladmin ping -P 3306 -pmsandbox
| grep alive
|| exit 1
db_replica2: db_replica2:
image: mariadb:10.5 image: mariadb:10.5
env: env:
MARIADB_ROOT_PASSWORD: msandbox MARIADB_ROOT_PASSWORD: msandbox
ports: ports:
- 3309:3306 - 3309:3306
options: *healthcheck options: >
--health-cmd mysqladmin ping -P 3306 -pmsandbox
| grep alive
|| exit 1
steps: steps:
- name: >- - name: >-