From ad0ee5c60662dff449d3fb4eb62b9e126fc54c9f Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Wed, 24 Aug 2022 00:05:33 +0200 Subject: manibuilder: Maintain list of broken images Disable images that can't be built anymore by default. We keep them listed, so existing images can still be used. Also add commands to show and run all supposed-to-be working tags. Change-Id: I0f0ffb6c5e28348656aac2ce265f8b1dc0e93362 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/flashrom/+/66996 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Felix Singer --- util/manibuilder/Makefile.targets | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'util/manibuilder') diff --git a/util/manibuilder/Makefile.targets b/util/manibuilder/Makefile.targets index ec4bdfae4..dff38797d 100644 --- a/util/manibuilder/Makefile.targets +++ b/util/manibuilder/Makefile.targets @@ -38,6 +38,12 @@ OTHER_TAGS := djgpp\:6.1.0 ALL_TAGS := $(ANITA_TAGS) $(MULTIARCH_TAGS) $(OTHER_TAGS) +BROKEN_TAGS := anita\:7.1-amd64 anita\:7.1-i386 \ + centos\:7.6-armhfp-clean \ + fedora\:30-s390x fedora\:28-armhfp \ + +WORKING_TAGS := $(filter-out $(BROKEN_TAGS),$(ALL_TAGS)) + arch_filter = $(sort \ $(foreach arch,$(1), \ $(filter-out $(subst $(arch),,$(MULTIARCH_TAGS)),$(MULTIARCH_TAGS)))) @@ -184,6 +190,8 @@ default: $(DEFAULT_TAGS) native: $(NATIVE_TAGS) +working: $(WORKING_TAGS) + all: $(ALL_TAGS) 1.0.x: export TEST_REVISION=refs/heads/1.0.x @@ -198,6 +206,9 @@ show-default: show-native: @printf "%s\n" $(NATIVE_TAGS) +show-working: + @printf "%s\n" $(WORKING_TAGS) + show-all: @printf "%s\n" $(ALL_TAGS) -- cgit v1.2.3