travis.sh: Update for ZSTD.

Note that Ubuntu 14.04 doesn't have libzstd-dev, so we'll be using
our bundled version on travis-ci.
This commit is contained in:
David Korth 2020-06-27 01:47:15 -04:00
parent f8fdaa7ae8
commit 763cd89ee1

View File

@ -23,10 +23,11 @@ case "$OSTYPE" in
-DENABLE_UNICE68=OFF \
-DENABLE_LIBMSPACK=OFF \
-DENABLE_PVRTC=OFF \
-DENABLE_ZSTD=OFF \
|| exit 1
;;
*)
# Linux. Enable everything.
# Linux. Enable all UI frontends.
# NOTE: KF5 is not available on Ubuntu 14.04,
# so we can't build the KF5 plugin.
cmake .. \
@ -47,6 +48,7 @@ case "$OSTYPE" in
-DENABLE_UNICE68=OFF \
-DENABLE_LIBMSPACK=OFF \
-DENABLE_PVRTC=OFF \
-DENABLE_ZSTD=OFF \
|| exit 1
esac
@ -68,6 +70,7 @@ cmake .. \
-DENABLE_UNICE68=ON \
-DENABLE_LIBMSPACK=ON \
-DENABLE_PVRTC=ON \
-DENABLE_ZSTD=ON \
|| exit 1
# Build everything.