The gnulib issue has been reported upstream, but solving it
is taking a bit and all jobs downstream of libvirt-master-check
are blocked in the meantime, which is less than ideal. Put a
temporary workaround in place.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
projects/libvirt.yaml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/projects/libvirt.yaml b/projects/libvirt.yaml
index 6f5464b..3273ebf 100644
--- a/projects/libvirt.yaml
+++ b/projects/libvirt.yaml
@@ -19,7 +19,11 @@
- autotools-check-job:
parent_jobs: 'libvirt-master-syntax-check'
local_env: |
- export VIR_TEST_EXPENSIVE=1
+ # gnulib's test-poll is broken on FreeBSD, so disable expensive
+ # tests (which include gnulib's test suite) until it's fixed
+ if [ "$(uname)" != "FreeBSD" ]; then
+ export VIR_TEST_EXPENSIVE=1
+ fi
export VIR_TEST_DEBUG=2
- autotools-rpm-job:
parent_jobs: 'libvirt-master-check'
--
2.17.0