Blob Blame History Raw
From 2d57ab4c61330aad4b7b8e8adc7a4587a02cc36d Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Thu, 13 Jun 2019 02:50:40 -0400
Subject: [PATCH 4/4] Skip STM32 tests.

We can't ship the STM32 .svd files due to their odd license.

Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
 Makefile | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index aec8458..1347550 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ fmt:
 fmt-check:
 	@unformatted=$$(gofmt -l $(FMT_PATHS)); [ -z "$$unformatted" ] && exit 0; echo "Unformatted:"; for fn in $$unformatted; do echo "  $$fn"; done; exit 1
 
-gen-device: gen-device-avr gen-device-nrf gen-device-sam gen-device-stm32
+gen-device: gen-device-avr gen-device-nrf gen-device-sam
 
 gen-device-avr:
 	./tools/gen-device-avr.py lib/avr/packs/atmega src/device/avr/
@@ -108,7 +108,6 @@ smoketest-no-avr:
 	tinygo build -size short -o test.elf -target=microbit            examples/echo
 	tinygo build -size short -o test.elf -target=nrf52840-mdk        examples/blinky1
 	tinygo build -size short -o test.elf -target=pca10031            examples/blinky1
-	tinygo build -size short -o test.elf -target=bluepill            examples/blinky1
 	tinygo build -size short -o test.elf -target=reelboard           examples/blinky1
 	tinygo build -size short -o test.elf -target=reelboard           examples/blinky2
 	tinygo build -size short -o test.elf -target=pca10056            examples/blinky1
@@ -117,8 +116,6 @@ smoketest-no-avr:
 	tinygo build -size short -o test.elf -target=feather-m0          examples/blinky1
 	tinygo build -size short -o test.elf -target=trinket-m0          examples/blinky1
 	tinygo build -size short -o test.elf -target=circuitplay-express examples/blinky1
-	tinygo build -size short -o test.elf -target=stm32f4disco        examples/blinky1
-	tinygo build -size short -o test.elf -target=stm32f4disco        examples/blinky2
 	tinygo build -size short -o test.elf -target=circuitplay-express examples/i2s
 	tinygo build             -o wasm.wasm -target=wasm               examples/wasm/export
 	tinygo build             -o wasm.wasm -target=wasm               examples/wasm/main
-- 
2.21.0