From 4577b0a6ac01b120246dc4f34a5f97be28c9e804 Mon Sep 17 00:00:00 2001 From: Gleb Popov <6yearold@gmail.com> Date: Mon, 22 Jul 2024 13:11:08 +0000 Subject: [PATCH] trivial: Re-enable testing in FreeBSD CI (#775) --- .cirrus.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index cc370a6b5..8113248cf 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,5 +1,5 @@ task: - name: "Build (freebsd)" + name: "Build & Test (freebsd)" freebsd_instance: matrix: - image_family: freebsd-13-3-snap @@ -7,14 +7,14 @@ task: - env ASSUME_ALWAYS_YES=yes pkg update -f - env ASSUME_ALWAYS_YES=yes pkg install -y docbook-xsl vala libxslt fontconfig polkit consolekit2 desktop-file-utils gettext meson ninja python3 glib gtk3 pkgconf sqlite3 gobject-introspection - dbus + dbus bash build_script: - meson --auto-features=enabled -Db_colorout=never --buildtype debug -Dlocal_checkout=true -Dlocalstatedir=/var -Dsystemd=false -Doffline_update=false -Dbash_completion=false -Dbash_command_not_found=false -Dgstreamer_plugin=false -Dpackaging_backend=freebsd _build - cd _build - ninja -v all - #test_script: - # - cd _build - # - service dbus onestart - # - ninja test + test_script: + - cd _build + - service dbus onestart + - ninja test