summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2019-08-26 17:45:52 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-08-26 21:55:47 +0000
commit19e1d631e3b93cf4553e003062934def5f091656 (patch)
tree43cfea6f034c97df91dd4ea78759d09f4d45bf60 /util
parenteb0eeb21be9886f509d51340ca886b450e2ce95b (diff)
downloadcoreboot-19e1d631e3b93cf4553e003062934def5f091656.tar.gz
coreboot-19e1d631e3b93cf4553e003062934def5f091656.tar.bz2
coreboot-19e1d631e3b93cf4553e003062934def5f091656.zip
what-jenkins-does: keep essential artifacts arounds
Keep for every board: coreboot.rom, config.h, config.build That way these can be used in follow-up jobs. Change-Id: I5ca5cb84ab1bcffbc92a972980cd0769ebf02462 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35099 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util')
-rw-r--r--util/testing/Makefile.inc11
1 files changed, 8 insertions, 3 deletions
diff --git a/util/testing/Makefile.inc b/util/testing/Makefile.inc
index d84c5a4f9b0a..5bf3e8e6f1a7 100644
--- a/util/testing/Makefile.inc
+++ b/util/testing/Makefile.inc
@@ -80,16 +80,21 @@ CPUS?=4
lint lint-stable lint-extended:
util/lint/lint $@
-ABUILD_OPTIONS=-B -J -c $(CPUS) -z -p $(JENKINS_PAYLOAD)
+ABUILD_OPTIONS=-B -J -c $(CPUS) -p $(JENKINS_PAYLOAD)
ABUILD_OPTIONS+=$(if $(V),-v,)
ABUILD_OPTIONS+=$(if $(JENKINS_NOCCACHE),,-y)
ABUILD_OPTIONS+=$(JENKINS_ABUILD_OPT)
+COREBOOT_BUILD_DIR?=coreboot-builds
+
what-jenkins-does:
+ rm -rf $(COREBOOT_BUILD_DIR)/chromeos $(COREBOOT_BUILD_DIR)/default
util/lint/lint lint-stable --junit
util/lint/lint lint-extended --junit
- util/abuild/abuild $(ABUILD_OPTIONS) -x -X $(top)/abuild-chromeos.xml
- util/abuild/abuild $(ABUILD_OPTIONS)
+ util/abuild/abuild -o $(COREBOOT_BUILD_DIR)/chromeos $(ABUILD_OPTIONS) -x -X $(top)/abuild-chromeos.xml
+ util/abuild/abuild -o $(COREBOOT_BUILD_DIR)/default $(ABUILD_OPTIONS)
+ -find $(COREBOOT_BUILD_DIR)/{regular,chromeos}/[A-Z]*/* \! \( -name coreboot.rom -o -name config.h -o -name config.build \) -type f -exec rm {} +
+ -find $(COREBOOT_BUILD_DIR)/{regular,chromeos}/[A-Z]*/* -type d -exec rmdir -p {} + 2>/dev/null
$(foreach tool, $(TOOLLIST), $(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR="util/$(tool)" BLD="$(tool)" MFLAGS= MAKEFLAGS= MAKETARGET= junit.xml; )
unset COREBOOT_BUILD_DIR;$(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=payloads/nvramcui BLD=nvramcui MFLAGS= MAKEFLAGS= MAKETARGET=all junit.xml
unset COREBOOT_BUILD_DIR;$(MAKE) CPUS=$(CPUS) V=$(V) Q=$(Q) BLD_DIR=payloads/coreinfo BLD=coreinfo MFLAGS= MAKEFLAGS= MAKETARGET=defaultbuild junit.xml