Commit 0668e6ba authored by Otto Kekäläinen's avatar Otto Kekäläinen

Travis-CI: skip building mariadb-test packages to speed up build

The build must stay under the Travis-CI 50 minute limit. Currently
they often exceed, and the huge test suite is the single most long
step in moving/packaging files, so remove it on Travis-CI automatically.
parent 7f570bef
......@@ -21,6 +21,13 @@ then
export DEB_BUILD_OPTIONS="nocheck"
fi
# Don't include test suite package on Travis-CI to make the build time shorter
if [[ $TRAVIS ]]
then
sed '/Package: mariadb-test-data/,+26d' -i debian/control
sed '/Package: mariadb-test/,+34d' -i debian/control
fi
export MARIADB_OPTIONAL_DEBS=""
# Find major.minor version.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment