summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2022-08-09 16:53:52 +0000
committerSimon McVittie <smcv@collabora.com>2022-08-10 11:18:20 +0000
commit1378e8e37e7888aec3d8671a59f235afc9030d18 (patch)
treee97dc16a9733a02abfa31b6e42e523575db550c3 /.gitlab-ci.yml
parentdb441d3017b73ecc44c4fd3507a0e38fc30a5d59 (diff)
downloaddbus-1378e8e37e7888aec3d8671a59f235afc9030d18.tar.gz
gitlab-ci: Add a FreeBSD autotools CI job
Now that the underlying issues with FreeBSD autotools CI have been fixed, we can add a CI job to prevent future regressions.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 96c62c6d..0492a193 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -461,4 +461,13 @@ freebsd cmake release:
# massively increases the VM image (and therefore container) size.
CI_BUILD_ARGS: "-DDBUS_ENABLE_DOXYGEN_DOCS=OFF -DDBUS_ENABLE_XML_DOCS=ON -DCMAKE_BUILD_TYPE=Release"
+freebsd autotools:
+ extends: .build-env-freebsd
+ variables:
+ ci_buildsys: "autotools"
+ # We don't build doxygen documentation, so the make dbus-docs.tar.xz target
+ # is not available. Set ci_variant to avoid building that target.
+ ci_variant: "production-no-upload-docs"
+ CI_BUILD_ARGS: "--enable-xml-docs"
+
# vim:set sw=2 sts=2 et: