Skip to content
Closed
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
22 changes: 22 additions & 0 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,17 @@ jobs:
cat config.mk
cd test
make -j ${{env.proc_num}}
- name: install mysql-server
run: |
sudo apt-get update
sudo apt-get install -y mysql-server
# The distro packages mysqld under /usr/sbin; expose it on PATH so
# the handshake integration test's `which mysqld` probe finds it.
# The test spins up its own throwaway instance, so stop the system
# service to free the default port.
sudo ln -sf /usr/sbin/mysqld /usr/local/bin/mysqld
sudo service mysql stop || true
mysqld --version
- name: run tests
run: |
cd test
Expand All @@ -214,6 +225,17 @@ jobs:
cat config.mk
cd test
make NEED_GPERFTOOLS=0 -j ${{env.proc_num}}
- name: install mysql-server
run: |
sudo apt-get update
sudo apt-get install -y mysql-server
# The distro packages mysqld under /usr/sbin; expose it on PATH so
# the handshake integration test's `which mysqld` probe finds it.
# The test spins up its own throwaway instance, so stop the system
# service to free the default port.
sudo ln -sf /usr/sbin/mysqld /usr/local/bin/mysqld
sudo service mysql stop || true
mysqld --version
- name: run tests
run: |
cd test
Expand Down