Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-x64/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
run: |
set -x

sudo service mysql start
sudo systemctl start mysql.service || sudo systemctl status mysql.service
sudo service slapd start
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
# Ensure local_infile tests can run.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ jobs:
uses: ./.github/actions/install-linux
- name: Setup
run: |
sudo service mysql start
sudo systemctl start mysql.service || sudo systemctl status mysql.service
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
mysql -uroot -proot -e "SET GLOBAL local_infile = true"
- name: Enable Opcache
Expand Down Expand Up @@ -747,7 +747,7 @@ jobs:
- name: Setup
run: |
set -x
sudo service mysql start
sudo systemctl start mysql.service || sudo systemctl status mysql.service
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
# Ensure local_infile tests can run.
mysql -uroot -proot -e "SET GLOBAL local_infile = true"
Expand Down Expand Up @@ -791,7 +791,7 @@ jobs:
sudo apt install bison re2c
- name: Setup
run: |
sudo service mysql start
sudo systemctl start mysql.service || sudo systemctl status mysql.service
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
# Ensure local_infile tests can run.
mysql -uroot -proot -e "SET GLOBAL local_infile = true"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ jobs:
run: |
git config --global user.name "Benchmark"
git config --global user.email "[email protected]"
sudo service mysql start
sudo systemctl start mysql.service || sudo systemctl status mysql.service
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS wordpress"
mysql -uroot -proot -e "CREATE USER 'wordpress'@'localhost' IDENTIFIED BY 'wordpress'; FLUSH PRIVILEGES;"
mysql -uroot -proot -e "GRANT ALL PRIVILEGES ON *.* TO 'wordpress'@'localhost' WITH GRANT OPTION;"
Expand Down
Loading