build system: Allow running make what-jenkins-does without ccache
coverity isn't too happy with ccache, and given the current setup it also isn't too useful. Change-Id: I420fdd7350dff29296d7101569cb183afe1f92d6 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/8478 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Marc Jones <marc.jones@se-eng.com>
This commit is contained in:
parent
f3d8b9a663
commit
7711c0d5c1
2
Makefile
2
Makefile
|
@ -97,7 +97,7 @@ ifeq ($(strip $(HAVE_DOTCONFIG)),)
|
||||||
NOCOMPILE:=1
|
NOCOMPILE:=1
|
||||||
endif
|
endif
|
||||||
ifneq ($(MAKECMDGOALS),)
|
ifneq ($(MAKECMDGOALS),)
|
||||||
ifneq ($(filter %config %clean cross% lint%,$(MAKECMDGOALS)),)
|
ifneq ($(filter %config %clean cross% lint% what-jenkins-does,$(MAKECMDGOALS)),)
|
||||||
NOCOMPILE:=1
|
NOCOMPILE:=1
|
||||||
endif
|
endif
|
||||||
ifeq ($(MAKECMDGOALS), %clean)
|
ifeq ($(MAKECMDGOALS), %clean)
|
||||||
|
|
|
@ -630,6 +630,6 @@ $(obj)/coreboot.pre: $(objcbfs)/romstage.elf $(obj)/coreboot.pre1 $(CBFSTOOL)
|
||||||
|
|
||||||
JENKINS_PAYLOAD=none
|
JENKINS_PAYLOAD=none
|
||||||
what-jenkins-does:
|
what-jenkins-does:
|
||||||
util/abuild/abuild -B -J -y -c 4 -z -p $(JENKINS_PAYLOAD)
|
util/abuild/abuild -B -J $(if $(JENKINS_NOCCACHE),,-y) -c 4 -z -p $(JENKINS_PAYLOAD)
|
||||||
(cd payloads/libpayload; $(MAKE) CONFIG_CCACHE=y V=$(V) Q=$(Q) junit.xml)
|
(cd payloads/libpayload; $(MAKE) $(if $(JENKINS_NOCCACHE),,CONFIG_CCACHE=y) V=$(V) Q=$(Q) junit.xml)
|
||||||
$(MAKE) V=$(V) Q=$(Q) -C util/cbmem junit.xml
|
$(MAKE) V=$(V) Q=$(Q) -C util/cbmem junit.xml
|
||||||
|
|
Loading…
Reference in New Issue