summaryrefslogtreecommitdiff
path: root/tools/ci-build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/ci-build.sh')
-rwxr-xr-xtools/ci-build.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/ci-build.sh b/tools/ci-build.sh
index 2f309c19..694fc128 100755
--- a/tools/ci-build.sh
+++ b/tools/ci-build.sh
@@ -181,10 +181,10 @@ rm -rf ci-build-dist
rm -rf src-from-dist
case "$ci_buildsys" in
- (cmake-dist)
- # Do an Autotools `make dist`, then build *that* with CMake,
+ (cmake-dist|meson-dist)
+ # Do an Autotools `make dist`, then build *that* with CMake or Meson,
# to assert that our official release tarballs will be enough
- # to build with CMake.
+ # to build with CMake or Meson.
mkdir -p ci-build-dist
( cd ci-build-dist; ../configure )
make -C ci-build-dist dist
@@ -433,7 +433,7 @@ case "$ci_buildsys" in
( cd DESTDIR && find . -ls)
;;
- (meson)
+ (meson|meson-dist)
# The test coverage for OOM-safety is too verbose to be useful on
# travis-ci, and too slow when running under wine.
export DBUS_TEST_MALLOC_FAILURES=0