mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
* Add MS SQL Tools version * Minor fix * Move MS SQL tools installation to separated file * Minor fix * accept yula
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: mysql.sh
|
|
## Desc: Installs MySQL Client
|
|
################################################################################
|
|
|
|
export ACCEPT_EULA=Y
|
|
|
|
if isUbuntu16 || isUbuntu18 ; then
|
|
apt-get install mysql-client -y
|
|
fi
|
|
|
|
if isUbuntu20 ; then
|
|
# Install mysql 8 for Ubuntu 20.
|
|
|
|
debconf-set-selections <<< 'mysql-apt-config mysql-apt-config/select-server select mysql-8.0'
|
|
package_version=$(curl https://dev.mysql.com/downloads/repo/apt/ 2> /dev/null | grep "\.deb" | awk -F "[()]" '{print $2}')
|
|
wget https://dev.mysql.com/get/$package_version
|
|
dpkg -i $package_version
|
|
apt update
|
|
fi
|
|
|
|
# Mysql setting up root password
|
|
MYSQL_ROOT_PASSWORD=root
|
|
echo "mysql-server mysql-server/root_password password $MYSQL_ROOT_PASSWORD" | debconf-set-selections
|
|
echo "mysql-server mysql-server/root_password_again password $MYSQL_ROOT_PASSWORD" | debconf-set-selections
|
|
|
|
# Install MySQL Server
|
|
apt-get install -y mysql-server
|
|
|
|
#Install MySQL Dev tools
|
|
apt install libmysqlclient-dev -y
|
|
|
|
# Run tests to determine that the software installed as expected
|
|
echo "Testing to make sure that script performed as expected, and basic scenarios work"
|
|
if ! command -v mysql; then
|
|
echo "mysql was not installed"
|
|
exit 1
|
|
fi
|
|
|
|
mysql -vvv -e 'CREATE DATABASE smoke_test' -uroot -proot
|
|
mysql -vvv -e 'DROP DATABASE smoke_test' -uroot -proot
|
|
set +e
|
|
|
|
# Disable mysql.service
|
|
systemctl is-active --quiet mysql.service && systemctl stop mysql.service
|
|
systemctl disable mysql.service
|