mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
* add missing tests * fix naming and nvm test * fix containers test and bring pwsh test back * remove pwsh test * small fix
14 lines
539 B
Bash
14 lines
539 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" |