Skip to content

Commit

Permalink
Hard clean mysql before reinstalling
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-riggs committed Aug 19, 2024
1 parent 46b681a commit b93ac01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ jobs:
tar xfz "dist/ispyb-database.tar.gz"

apt-get update && apt-get install sudo -y
apt-get remove --purge mysql-\* -y
sudo apt purge mysql-server mysql-client mysql-common mysql-server-core-* mysql-client-core-* -y
sudo rm -rf /etc/mysql /var/lib/mysql /var/log/mysql
sudo apt autoremove
sudo apt autoclean
apt-get install mysql-server mysql-client --fix-broken --fix-missing -y
sudo service mysql start

Expand Down

0 comments on commit b93ac01

Please sign in to comment.