Skip to content
Merged
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
7 changes: 6 additions & 1 deletion .github/workflows/cluster_endtoend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
name: [11, 12, 13, 14, 15, 16, 17, 18]
name: [11, 12, 13, 14, 15, 16, 17, 18, 19, 20]

steps:
- name: Set up Go
Expand All @@ -26,6 +26,11 @@ jobs:
sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/
sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
go mod download
wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb
sudo apt-get install -y gnupg2
sudo dpkg -i percona-release_latest.$(lsb_release -sc)_all.deb
sudo apt-get update
sudo apt-get install percona-xtrabackup-24

- name: sharded cluster_endtoend
run: |
Expand Down
3 changes: 2 additions & 1 deletion go/test/endtoend/backup/vtbackup/backup_only_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,8 @@ func tearDown(t *testing.T, initMysql bool) {
}
}

// TODO: Ideally we should not be resetting the mysql.
// So in below code we will have to uncomment the commented code and remove resetTabletDirectory
for _, tablet := range []cluster.Vttablet{*master, *replica1, *replica2} {
//Tear down Tablet
//err := tablet.VttabletProcess.TearDown()
Expand All @@ -300,5 +302,4 @@ func tearDown(t *testing.T, initMysql bool) {

resetTabletDirectory(t, tablet, initMysql)
}

}
Loading