Skip to content

Commit 4391b48

Browse files
committed
more fixes.
1 parent 8aa2764 commit 4391b48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)