From c2d8aa058427b6b0bc61ab1ad7b49d8f1d52a923 Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 26 Jan 2021 22:04:20 +0700 Subject: limit artifact to only uf2 for now due to the large size of combined binaries of all boards + all examples --- examples/rules.mk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'examples') diff --git a/examples/rules.mk b/examples/rules.mk index 07bf9a7df..aac0fbb38 100644 --- a/examples/rules.mk +++ b/examples/rules.mk @@ -219,9 +219,10 @@ $(BIN): @$(MKDIR) -p $@ # Copy binaries .elf, .bin, .hex, .uf2 to BIN for upload +# due to large size of combined artifacts, only uf2 is uploaded for now copy-artifact: $(BIN) - @$(CP) $(BUILD)/$(PROJECT).elf $(BIN) - @$(CP) $(BUILD)/$(PROJECT).bin $(BIN) - @$(CP) $(BUILD)/$(PROJECT).hex $(BIN) @$(CP) $(BUILD)/$(PROJECT).uf2 $(BIN) + #@$(CP) $(BUILD)/$(PROJECT).bin $(BIN) + #@$(CP) $(BUILD)/$(PROJECT).hex $(BIN) + #@$(CP) $(BUILD)/$(PROJECT).elf $(BIN) -- cgit v1.3.1