diff options
author | Otto Kekäläinen <otto@mariadb.org> | 2018-01-12 12:04:01 +0000 |
---|---|---|
committer | Vicențiu-Marian Ciorbaru <cvicentiu@gmail.com> | 2018-01-16 13:48:00 +0200 |
commit | e260c6a087484973625445787d05e8b0f7ffe5b5 (patch) | |
tree | 15afba62f7a465ef240801eebc89d00752241f2d /debian | |
parent | da27dc995ee407cb56761393bc5dcdd48456d851 (diff) | |
download | mariadb-git-e260c6a087484973625445787d05e8b0f7ffe5b5.tar.gz |
Fix commit 9631d933fbc2ec99874 so Travis CI doesn't fail
TokuDB and Mroonga are not built on Travis CI to save time. Previously
their packages were not created due to a hack in debian/rules, that got
removed in commit 9631d933fbc2ec99874. This change complements that commit.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/autobake-deb.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/debian/autobake-deb.sh b/debian/autobake-deb.sh index 1a709eb8284..2158d0d0e29 100755 --- a/debian/autobake-deb.sh +++ b/debian/autobake-deb.sh @@ -87,6 +87,12 @@ then sed '/Package: mariadb-plugin-aws-key-management-10.3/,+15d' -i debian/control fi +# Mroonga, TokuDB never built on Travis CI anyway, see build flags above +if [[ $TRAVIS ]] +then + sed -i -e "/Package: mariadb-plugin-tokudb/,+17d" debian/control + sed -i -e "/Package: mariadb-plugin-mroonga/,+16d" debian/control +fi # Adjust changelog, add new version echo "Incrementing changelog and starting build scripts" |