We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ec4217 commit 954caa8Copy full SHA for 954caa8
.github/workflows/ci-test.yml
@@ -48,7 +48,7 @@ jobs:
48
# Install the databases
49
- name: Install postgres
50
run: |
51
- apt-get install postgresql
+ sudo apt-get install postgresql
52
# Disable fsync for speed, don't care about data durability when testing
53
sudo sed -i -e '$a\fsync = off' /etc/postgresql/*/*/postgresql.conf
54
sudo service postgresql restart; sleep 30
@@ -57,7 +57,7 @@ jobs:
57
58
- name: Install mysql
59
60
- apt-get install mysql
+ sudo apt-get install mysql
61
# set up mysql database
62
sudo sed -i -e '/^\[mysqld\]/,/^\[mysql/s/^max_allowed_packet.*/max_allowed_packet = 500M/' /etc/mysql/my.cnf
63
cat /etc/mysql/my.cnf
0 commit comments