From: Kienan Stewart Date: Tue, 23 Jan 2024 20:26:22 +0000 (-0500) Subject: jjb: Disable TAP timing on slesbuilds of lttng-tools X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=60d7f186e7498c5db24d0554b5fda4f3c972c9ff;p=lttng-ci.git 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 --- 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