build(deps): bump golang.org/x/tools from 0.1.5 to 0.25.0 #2192
Workflow file for this run
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 (26) | |
on: [push, pull_request] | |
env: | |
# 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. | |
XTRABACKUP_VERSION: "2.4.24-1" | |
concurrency: | |
group: format('{0}-{1}', ${{ github.ref }}, 'Cluster (26)') | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Run endtoend tests on Cluster (26) | |
runs-on: ubuntu-18.04 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17.12 | |
- name: Tune the OS | |
run: | | |
echo '1024 65535' | sudo tee -a /proc/sys/net/ipv4/ip_local_port_range | |
# TEMPORARY WHILE GITHUB FIXES THIS https://github.com/actions/virtual-environments/issues/3185 | |
- name: Add the current IP address, long hostname and short hostname record to /etc/hosts file | |
run: | | |
echo -e "$(ip addr show eth0 | grep "inet\b" | awk '{print $2}' | cut -d/ -f1)\t$(hostname -f) $(hostname -s)" | sudo tee -a /etc/hosts | |
# DON'T FORGET TO REMOVE CODE ABOVE WHEN ISSUE IS ADRESSED! | |
- 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 | |
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 | |
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: Run cluster endtoend test | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 30 | |
max_attempts: 3 | |
retry_on: error | |
command: | | |
source build.env | |
eatmydata -- go run test.go -docker=false -print-log -follow -shard 26 |