We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29b4f93 commit 40b53b1Copy full SHA for 40b53b1
1 file changed
script/cibuild-gh-ost-replica-tests
@@ -10,6 +10,8 @@ test_mysql_version() {
10
local mysql_version
11
mysql_version="$1"
12
13
+ echo "# Testing $mysql_version"
14
+
15
find sandboxes -name "stop_all" | bash
16
17
mkdir -p sandbox/binary
@@ -30,13 +32,13 @@ test_mysql_version() {
30
32
31
33
gh-ost-test-mysql-master -uroot -e "grant all on *.* to 'gh-ost'@'%' identified by 'gh-ost'"
34
- echo "# Testing $mysql_version"
- . script/build
35
./localtests/test.sh -b bin/gh-ost
36
37
38
}
39
40
+echo "Building..."
41
+. script/build
42
# Test all versions:
43
find gh-ost-ci-env/mysql-tarballs/ -name "*.tar.gz" | while read f ; do basename $f ".tar.gz" ; done | sort -r | while read mysql_version ; do
44
test_mysql_version "$mysql_version"
0 commit comments