From 60d7f186e7498c5db24d0554b5fda4f3c972c9ff Mon Sep 17 00:00:00 2001 From: Kienan Stewart Date: Tue, 23 Jan 2024 15:26:22 -0500 Subject: [PATCH] jjb: Disable TAP timing on slesbuilds of lttng-tools The tap results regularly have malformed YAML which causes the builds to fail spuriously. Change-Id: I53f28d01eb5f126d7d6803846353852bdaf2065f Signed-off-by: Kienan Stewart --- jobs/lttng-tools.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jobs/lttng-tools.yaml b/jobs/lttng-tools.yaml index 427fdcc..a091164 100644 --- a/jobs/lttng-tools.yaml +++ b/jobs/lttng-tools.yaml @@ -154,12 +154,15 @@ ust_conf=std ;; esac - # Run java tests only on 'linuxbuild' jobs + # Run java tests only on 'linuxbuild' and 'slesbuild' jobs if [ "{buildtype}" = "linuxbuild" ] || [ "{buildtype}" = "slesbuild" ]; then echo "LTTNG_TOOLS_RUN_UST_JAVA_TESTS=yes" >> env.properties else echo "LTTNG_TOOLS_RUN_UST_JAVA_TESTS=no" >> env.properties fi + if [ "{buildtype}" = "slesbuild" ] ; then + echo "TAP_AUTOTIME=0" >> env.properties + fi echo "liburcu_conf=$liburcu_conf" >> env.properties echo "babeltrace_conf=$babeltrace_conf" >> env.properties echo "ust_conf=$ust_conf" >> env.properties -- 2.34.1