Skip to content

Commit 73141f9

Browse files
authored
Merge pull request #9071 from kenjis/update-mssql
chore: fix mssql-server 2022 failing to start
2 parents 8d18ea7 + ddb60ed commit 73141f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/reusable-phpunit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ jobs:
9595
mssql:
9696
image: mcr.microsoft.com/mssql/server:2022-latest
9797
env:
98-
SA_PASSWORD: 1Secure*Password1
98+
MSSQL_SA_PASSWORD: 1Secure*Password1
9999
ACCEPT_EULA: Y
100100
MSSQL_PID: Developer
101101
ports:
102102
- 1433:1433
103103
options: >-
104-
--health-cmd="/opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q 'SELECT @@VERSION'"
104+
--health-cmd="/opt/mssql-tools18/bin/sqlcmd -C -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q 'SELECT @@VERSION'"
105105
--health-interval=10s
106106
--health-timeout=5s
107107
--health-retries=3

0 commit comments

Comments
 (0)