Skip to content

Commit

Permalink
[bug] Change sqlcmd path for latest mssql docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
konovalovsergey committed Sep 3, 2024
1 parent 5a8b10a commit 1b7117f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mssqlDatabaseTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ jobs:
- name: Creating schema
run: |
docker cp ./schema/mssql/createdb.sql mssql:/
docker exec mssql /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P onlYoff1ce -Q "CREATE DATABASE onlyoffice;"
docker exec mssql /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P onlYoff1ce -d onlyoffice -i /createdb.sql
docker exec mssql /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P onlYoff1ce -Q "CREATE DATABASE onlyoffice;"
docker exec mssql /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P onlYoff1ce -d onlyoffice -i /createdb.sql
- name: Run Jest
run: npm run "integration database tests"

0 comments on commit 1b7117f

Please sign in to comment.