MAINTAINERS.md: Update dweitzman's email #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# DO NOT MODIFY: THIS FILE IS GENERATED USING "make generate_ci_workflows" | |
name: Cluster (onlineddl_vrepl_stress_suite) | |
on: [push, pull_request] | |
concurrency: | |
group: format('{0}-{1}', ${{ github.ref }}, 'Cluster (onlineddl_vrepl_stress_suite)') | |
cancel-in-progress: true | |
env: | |
LAUNCHABLE_ORGANIZATION: "vitess" | |
LAUNCHABLE_WORKSPACE: "vitess-app" | |
GITHUB_PR_HEAD_SHA: "${{ github.event.pull_request.head.sha }}" | |
jobs: | |
build: | |
name: Run endtoend tests on Cluster (onlineddl_vrepl_stress_suite) | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: Set up python | |
uses: actions/setup-python@v2 | |
- name: Tune the OS | |
run: | | |
echo '1024 65535' | sudo tee -a /proc/sys/net/ipv4/ip_local_port_range | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y mysql-server mysql-client make unzip g++ etcd curl git wget eatmydata | |
sudo service mysql stop | |
sudo service etcd stop | |
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 | |
# install JUnit report formatter | |
go get -u github.com/vitessio/go-junit-report@HEAD | |
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 | |
run: | | |
# Get Launchable CLI installed. If you can, make it a part of the builder image to speed things up | |
pip3 install --user launchable~=1.0 > /dev/null | |
# verify that launchable setup is all correct. | |
launchable verify || true | |
# Tell Launchable about the build you are producing and testing | |
launchable record build --name "$GITHUB_RUN_ID" --source . | |
- name: Run cluster endtoend test | |
timeout-minutes: 30 | |
run: | | |
source build.env | |
set -x | |
# run the tests however you normally do, then produce a JUnit XML file | |
eatmydata -- go run test.go -docker=false -follow -shard onlineddl_vrepl_stress_suite | tee -a output.txt | go-junit-report -set-exit-code > report.xml | |
- name: Print test output and Record test result in launchable | |
run: | | |
# send recorded tests to launchable | |
launchable record tests --build "$GITHUB_RUN_ID" go-test . || true | |
# print test output | |
cat output.txt | |
if: always() |