Skip to content

Commit

Permalink
add workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
manitgupta committed Feb 15, 2023
1 parent 1649377 commit e30062a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/integration-tests-against-emulator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,12 @@ jobs:
# init sql server with test_data
- name: Install sqlcmd required for loading .sql files
run: |
sudo apt-get update
sudo apt-get install unixodbc-dev
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/msprod.list
sudo apt-get update
sudo apt-get install mssql-tools unixodbc-dev
sudo apt-get install -y msodbcsql17 mssql-tools
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile
- run: sqlcmd -?
- run: sqlcmd -U sa -P ${MSSQL_SA_PASSWORD} -i test_data/sqlserver.test.out
Expand Down

0 comments on commit e30062a

Please sign in to comment.