gh-ost/script/localtests
2018-02-11 14:15:38 +02:00

30 lines
990 B
Bash

#!/bin/bash
set -e
[ -d "gh-ost-ci-env" ] || git clone https://github.com/github/gh-ost-ci-env.git
find sandboxes -name "stop_all" || :
mkdir -p sandbox/binary
rm -rf sandbox/binary/*
gh-ost-ci-env/bin/linux/dbdeployer unpack gh-ost-ci-env/mysql-tarballs/5.7.21.tar.gz --unpack-version=5.7.21 --sandbox-binary ${PWD}/sandbox/binary
mkdir -p sandboxes
rm -rf sandboxes/*
gh-ost-ci-env/bin/linux/dbdeployer replication 5.7.21 --nodes 2 --sandbox-binary ${PWD}/sandbox/binary --sandbox-home ${PWD}/sandboxes
sed '/sandboxes/d' -i gh-ost-ci-env/bin/gh-ost-test-mysql-master
echo 'sandboxes/rsandbox_5_7_21/m "$@"' >> gh-ost-ci-env/bin/gh-ost-test-mysql-master
sed '/sandboxes/d' -i gh-ost-ci-env/bin/gh-ost-test-mysql-replica
echo 'sandboxes/rsandbox_5_7_21/s1 "$@"' >> gh-ost-ci-env/bin/gh-ost-test-mysql-replica
sandboxes/rsandbox_5_7_21/restart_all
export PATH="${PWD}/gh-ost-ci-env/bin/:${PATH}"
echo "# Running localtests"
./localtests/test.sh
sandboxes/rsandbox_5_7_21/stop_all