File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
eng/pipelines/common/templates/steps Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ parameters:
19
19
steps :
20
20
# macOS only steps
21
21
- bash : |
22
+ set -x
23
+
22
24
# The "user" pipeline variable conflicts with homebrew, causing errors during install. Set it back to the pipeline user.
23
25
USER=`whoami`
24
26
SQLCMD_ERRORS=$(Agent.TempDirectory)/sqlcmd_err.log
@@ -34,7 +36,10 @@ steps:
34
36
docker pull mcr.microsoft.com/mssql/server:2022-latest
35
37
36
38
# Password for the SA user (required)
37
- MSSQL_SA_PW=${{parameters.password }}
39
+ MSSQL_SA_PW=${{ parameters.password }}
40
+
41
+ echo Parameter: ${{ parameters.password }}
42
+ echo Password: $MSSQL_SA_PW
38
43
39
44
docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=$MSSQL_SA_PW" -p 1433:1433 -p 1434:1434 --name sql1 --hostname sql1 -d mcr.microsoft.com/mssql/server:2022-latest
40
45
You can’t perform that action at this time.
0 commit comments