File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,13 +57,13 @@ jobs:
5757 # set up postgresql database
5858 sudo -u postgres psql -c "CREATE ROLE rounduptest WITH CREATEDB LOGIN PASSWORD 'rounduptest';" -U postgres
5959
60- - name : Install mariadb/ mysql
60+ - name : Install mysql/mariadb
6161 run : |
62- sudo apt-get install mariadb
62+ sudo apt-get install mysql-server mysql-client
6363 # set up mysql database
6464 sudo sed -i -e '/^\[mysqld\]/,/^\[mysql/s/^max_allowed_packet.*/max_allowed_packet = 500M/' /etc/mysql/my.cnf
6565 cat /etc/mysql/my.cnf
66- sudo service mariadb restart
66+ sudo service mysql restart
6767 mysql -u root -e 'GRANT ALL ON rounduptest.* TO rounduptest@localhost IDENTIFIED BY "rounduptest";'
6868 # HACK: workaround mysql bug: http://bugs.mysql.com/bug.php?id=74901
6969 # needed for test_mysql.mysqlDBTest.testFilteringSpecialChars
You can’t perform that action at this time.
0 commit comments