File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
.github/actions/setup-windows Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ runs:
1212 - name : Setup MSSQL
1313 shell : cmd
1414 run : |
15+ path
16+ echo ${{ runner.temp }}
1517 curl -Ls -o SQL2022-SSEI-Dev.exe https://download.microsoft.com/download/c/c/9/cc9c6797-383c-4b24-8920-dc057c1de9d3/SQL2022-SSEI-Dev.exe
16- SQL2022-SSEI-Dev.exe /Action=Download /MediaPath="C:\Users\RUNNER~1\AppData\Local\Temp\sqlserver-NnBncV " /MediaType=CAB /Quiet
17- SQLServer2022-DEV-x64-ENU.exe /X:C:\Users\RUNNER~1\AppData\Local\Temp\sqlserver-NnBncV \Media /QS
18- C:\Users\RUNNER~1\AppData\Local\Temp\sqlserver-NnBncV \Media\setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION="install" /FEATURES=SQL /INSTANCENAME=MSSQLSERVER /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS" /SAPWD="YourStrong!Passw0rd" /SECURITYMODE=SQL /ERRORREPORTING=0
18+ SQL2022-SSEI-Dev.exe /Action=Download /MediaPath="%TEMP " /MediaType=CAB /Quiet
19+ SQLServer2022-DEV-x64-ENU.exe /X:%TEMP% \Media /QS
20+ %TEMP% \Media\setup.exe /Q /IACCEPTSQLSERVERLICENSETERMS /ACTION="install" /FEATURES=SQL /INSTANCENAME=MSSQLSERVER /SQLSVCACCOUNT="NT AUTHORITY\SYSTEM" /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS" /SAPWD="YourStrong!Passw0rd" /SECURITYMODE=SQL /ERRORREPORTING=0
1921 - name : Setup PostgreSQL
2022 shell : pwsh
2123 run : |
You can’t perform that action at this time.
0 commit comments