mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 05:07:02 +00:00
* Add Pester tests * Fix incorrect merging * Remove swift test from installing script * Minor fix * Remove Haskell tests from commons tests * Fix selenium test * Fix SVN test * Fix pipx tests * Debug * Fix pipx packages test * Skip pipx for 16.04
16 lines
579 B
Bash
16 lines
579 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)
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/invoke-tests.sh
|
|
|
|
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" |