Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
8 changes: 0 additions & 8 deletions .github/docker/cluster_test_12/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ USER root
RUN rm -rf /vt/src/vitess.io/vitess/*
COPY . /vt/src/vitess.io/vitess

# install XtraBackup
RUN wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb
RUN apt-get update
RUN apt-get install -y gnupg2
RUN dpkg -i percona-release_latest.$(lsb_release -sc)_all.deb
RUN apt-get update
RUN apt-get install -y percona-xtrabackup-24

# Set the working directory
WORKDIR /vt/src/vitess.io/vitess

Expand Down
8 changes: 0 additions & 8 deletions .github/docker/cluster_test_18/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@ USER root
RUN rm -rf /vt/src/vitess.io/vitess/*
COPY . /vt/src/vitess.io/vitess

# install XtraBackup
RUN wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb
RUN apt-get update
RUN apt-get install -y gnupg2
RUN dpkg -i percona-release_latest.$(lsb_release -sc)_all.deb
RUN apt-get update
RUN apt-get install -y percona-xtrabackup-24

# Set the working directory
WORKDIR /vt/src/vitess.io/vitess

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cluster_endtoend_12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- 'config/**'
- '.github/docker/**'
- 'bootstrap.sh'
- '.github/workflows/**'
Comment thread
mattlord marked this conversation as resolved.

- name: Build Docker Image
if: steps.changes.outputs.end_to_end == 'true'
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_15.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/cluster_endtoend_18.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- 'config/**'
- '.github/docker/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Build Docker Image
if: steps.changes.outputs.end_to_end == 'true'
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_19.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
19 changes: 16 additions & 3 deletions .github/workflows/cluster_endtoend_20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,11 +76,17 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb
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 dpkg -i "percona-release_latest.$(lsb_release -sc)_all.deb"
sudo apt-get update
sudo apt-get install percona-xtrabackup-24
if [[ -n $XTRABACKUP_VERSION ]]; then
debfile="percona-xtrabackup-24_$XTRABACKUP_VERSION.$(lsb_release -sc)_amd64.deb"
wget "https://repo.percona.com/pxb-24/apt/pool/main/p/percona-xtrabackup-24/$debfile"
sudo apt install -y "./$debfile"
else
sudo apt-get install -y percona-xtrabackup-24
fi

- name: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_21.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_22.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_24.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Installing zookeeper and consul
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/cluster_endtoend_26.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ concurrency:

env:
LAUNCHABLE_ORGANIZATION: "vitess"
# This is used if we need to pin the xtrabackup version used in tests.
# Doing so here because 2.4.25 crashes in our 5.7 tests. See:
# https://jira.percona.com/browse/PXB-2756
# If this is NOT set then the latest version available will be used IF
# needed (see the InstallXtraBackup templating variable).
XTRABACKUP_VERSION: "2.4.24-1"
LAUNCHABLE_WORKSPACE: "vitess-app"
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}"

Expand Down Expand Up @@ -36,6 +42,7 @@ jobs:
- 'tools/**'
- 'config/**'
- 'bootstrap.sh'
- '.github/workflows/**'

- name: Set up Go
if: steps.changes.outputs.end_to_end == 'true'
Expand Down Expand Up @@ -69,12 +76,6 @@ jobs:
# install JUnit report formatter
go install github.com/jstemmer/go-junit-report@latest

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: Setup launchable dependencies
if: steps.changes.outputs.end_to_end == 'true'
run: |
Expand Down
Loading