Skip to content

Commit

Permalink
testing? again?
Browse files Browse the repository at this point in the history
  • Loading branch information
gregcorbett committed Feb 27, 2024
1 parent af296eb commit 3ce67ec
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ jobs:
MYSQL_USER: "user"
MYSQL_PASSWORD: "password"

if [[ ${{ matrix.mariadb-version }} == "10.3" ]]
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
else
options: --health-cmd="mariadb-admin ping" --health-interval=5s --health-timeout=2s --health-retries=3
options: |
if [[ ${{ matrix.mariadb-version }} == "10.3" ]]
--health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
else
--health-cmd="mariadb-admin ping" --health-interval=5s --health-timeout=2s --health-retries=3
fi
ports:
- "3306:3306"

Expand Down

0 comments on commit 3ce67ec

Please sign in to comment.