mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 20:56:47 +00:00
* Create symlink for test running * Fix 1604 and 2004 templates * Fix php and haskell running * Minor fix * Fix new added tests * Fix symlink * Minor fix * Fix script permissions * Minor fix * Fix firefox and rust tests * Fix new merged tests
15 lines
540 B
Bash
15 lines
540 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: mssql-cmd-tools.sh
|
|
## Desc: Install MS SQL Server client tools (https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-setup-tools?view=sql-server-2017)
|
|
################################################################################
|
|
|
|
|
|
export ACCEPT_EULA=Y
|
|
|
|
apt-get update
|
|
apt-get install -y mssql-tools unixodbc-dev
|
|
apt-get -f install
|
|
ln -s /opt/mssql-tools/bin/* /usr/local/bin/
|
|
|
|
invoke_tests "Tools" "MSSQLCommandLineTools" |