Skip to content

Commit a30a9eb

Browse files
committed
Skip multi-arch for nbody
Signed-off-by: Evan Lezar <[email protected]>
1 parent cc9fdd5 commit a30a9eb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

deployments/container/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ TEST_TARGETS := $(patsubst %,test-%, $(DISTRIBUTIONS))
5353

5454
.PHONY: $(DISTRIBUTIONS) $(PUSH_TARGETS) $(BUILD_TARGETS) $(TEST_TARGETS)
5555

56+
# Certain samples do not allow multi-arch images. We disable them here.
57+
# TODO: Does it make more sense to set this at a CI-level?
58+
ifeq ($(SAMPLE),nbody)
59+
BUILD_MULTI_ARCH_IMAGES = false
60+
endif
61+
5662
ifneq ($(BUILD_MULTI_ARCH_IMAGES),true)
5763
include $(CURDIR)/deployments/container/native-only.mk
5864
else

0 commit comments

Comments
 (0)