File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -613,12 +613,12 @@ jobs:
613
613
ref : ${{ matrix.branch.ref }}
614
614
- name : Setup MySQL
615
615
run : |
616
- choco install mysql -y --params="/port:3307"
616
+ choco install mysql -y --no-progress -- params="/port:3307"
617
617
mysql.exe --port=3307 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysql_Pass11'; FLUSH PRIVILEGES;"
618
618
mysql.exe --port=3307 --user=root --password="mysql_Pass11" -e "SELECT 1;"
619
619
- name : Setup MSSQL
620
620
run : |
621
- choco install sql-server-express -y --install-arguments="/SECURITYMODE=SQL /SAPWD=mssql_Pass11"
621
+ choco install sql-server-express -y --no-progress -- install-arguments="/SECURITYMODE=SQL /SAPWD=mssql_Pass11"
622
622
sqlcmd -S "(local)\SQLEXPRESS" -U sa -P "mssql_Pass11" -Q "SELECT 1;"
623
623
- name : Setup PostgreSQL
624
624
run : |
Original file line number Diff line number Diff line change @@ -159,12 +159,12 @@ jobs:
159
159
uses : actions/checkout@v2
160
160
- name : Setup MySQL
161
161
run : |
162
- choco install mysql -y --params="/port:3307"
162
+ choco install mysql -y --no-progress -- params="/port:3307"
163
163
mysql.exe --port=3307 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysql_Pass11'; FLUSH PRIVILEGES;"
164
164
mysql.exe --port=3307 --user=root --password="mysql_Pass11" -e "SELECT 1;"
165
165
- name : Setup MSSQL
166
166
run : |
167
- choco install sql-server-express -y --install-arguments="/SECURITYMODE=SQL /SAPWD=mssql_Pass11"
167
+ choco install sql-server-express -y --no-progress -- install-arguments="/SECURITYMODE=SQL /SAPWD=mssql_Pass11"
168
168
sqlcmd -S "(local)\SQLEXPRESS" -U sa -P "mssql_Pass11" -Q "SELECT 1;"
169
169
- name : Setup PostgreSQL
170
170
run : |
You can’t perform that action at this time.
0 commit comments