From b399f103a138ded51bc73d9a107798624bb057b8 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Sat, 19 Nov 2022 15:59:27 -0700 Subject: [PATCH] util/testing: Update ABUILD_OPTIONS with long option names It's hard to tell what is what with the short option names, so use the long options here. Signed-off-by: Martin Roth Change-Id: I1371e098bba1077dedfaffa56287a28656197b40 Reviewed-on: https://review.coreboot.org/c/coreboot/+/69837 Reviewed-by: Elyes Haouas Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans --- util/testing/Makefile.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc index ab0dff679a..595239383d 100644 --- a/util/testing/Makefile.inc +++ b/util/testing/Makefile.inc @@ -74,9 +74,9 @@ CPUS?=4 lint lint-stable lint-extended: util/lint/lint $@ -ABUILD_OPTIONS=-B -J -c $(CPUS) -Z -p $(JENKINS_PAYLOAD) -ABUILD_OPTIONS+=$(if $(V),-v,) -ABUILD_OPTIONS+=$(if $(JENKINS_NOCCACHE),,-y) +ABUILD_OPTIONS=--blobs --junit --cpus $(CPUS) --clean-somewhat --payloads $(JENKINS_PAYLOAD) +ABUILD_OPTIONS+=$(if $(V),--verbose,) +ABUILD_OPTIONS+=$(if $(JENKINS_NOCCACHE),,--ccache) ABUILD_OPTIONS+=$(JENKINS_ABUILD_OPT) COREBOOT_BUILD_DIR?=coreboot-builds