Skip to content

Commit

Permalink
CI: disable SSL verification in MSSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Aug 22, 2024
1 parent 14edc33 commit 63f2226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/ci/compose/scripts/mssql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

for i in {1..50};
do
/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -d master -Q "CREATE DATABASE openfire;"
/opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -d openfire -i /openfiredb/openfire_sqlserver.sql
/opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P $SA_PASSWORD -d master -Q "CREATE DATABASE openfire;"
/opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P $SA_PASSWORD -d openfire -i /openfiredb/openfire_sqlserver.sql
if [ $? -eq 0 ]
then
echo "openfire sql import"
Expand Down

0 comments on commit 63f2226

Please sign in to comment.