Blame 0003-Skip-STM32-tests.patch

1dd9e93
From dec3e5cbd6dc805ebf1dcbf83a7160512b4cce56 Mon Sep 17 00:00:00 2001
b34ba92
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
b34ba92
Date: Thu, 13 Jun 2019 02:50:40 -0400
1dd9e93
Subject: [PATCH 3/5] Skip STM32 tests.
b34ba92
b34ba92
We can't ship the STM32 .svd files due to their odd license.
b34ba92
b34ba92
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
b34ba92
---
1dd9e93
 Makefile | 12 +-----------
1dd9e93
 1 file changed, 1 insertion(+), 11 deletions(-)
b34ba92
b34ba92
diff --git a/Makefile b/Makefile
1dd9e93
index 4691d12..8d4408e 100644
b34ba92
--- a/Makefile
b34ba92
+++ b/Makefile
f7d3f8d
@@ -118,7 +118,7 @@ fmt-check:
b34ba92
 	@unformatted=$$(gofmt -l $(FMT_PATHS)); [ -z "$$unformatted" ] && exit 0; echo "Unformatted:"; for fn in $$unformatted; do echo "  $$fn"; done; exit 1
b34ba92
 
421b6c4
 
1dd9e93
-gen-device: gen-device-avr gen-device-nrf gen-device-sam gen-device-sifive gen-device-stm32 gen-device-kendryte gen-device-nxp
1dd9e93
+gen-device: gen-device-avr gen-device-nrf gen-device-sam gen-device-sifive gen-device-kendryte gen-device-nxp
b34ba92
 
b34ba92
 gen-device-avr:
d33afff
 	$(GO) build -o ./build/gen-device-avr ./tools/gen-device-avr/
1dd9e93
@@ -245,8 +245,6 @@ smoketest:
3e3821d
 	@$(MD5SUM) test.hex
3e3821d
 	$(TINYGO) build -size short -o test.hex -target=pca10031            examples/blinky1
3e3821d
 	@$(MD5SUM) test.hex
3e3821d
-	$(TINYGO) build -size short -o test.hex -target=bluepill            examples/blinky1
3e3821d
-	@$(MD5SUM) test.hex
3e3821d
 	$(TINYGO) build -size short -o test.hex -target=reelboard           examples/blinky1
3e3821d
 	@$(MD5SUM) test.hex
3e3821d
 	$(TINYGO) build -size short -o test.hex -target=reelboard           examples/blinky2
1dd9e93
@@ -263,12 +261,6 @@ smoketest:
3e3821d
 	@$(MD5SUM) test.hex
3e3821d
 	$(TINYGO) build -size short -o test.hex -target=circuitplay-express examples/blinky1
3e3821d
 	@$(MD5SUM) test.hex
3e3821d
-	$(TINYGO) build -size short -o test.hex -target=stm32f4disco        examples/blinky1
3e3821d
-	@$(MD5SUM) test.hex
3e3821d
-	$(TINYGO) build -size short -o test.hex -target=stm32f4disco        examples/blinky2
3e3821d
-	@$(MD5SUM) test.hex
1dd9e93
-	$(TINYGO) build -size short -o test.hex -target=stm32f4disco-1       examples/blinky1
1dd9e93
-	@$(MD5SUM) test.hex
5e83ee0
 	$(TINYGO) build -size short -o test.hex -target=circuitplay-bluefruit examples/blinky1
3e3821d
 	@$(MD5SUM) test.hex
5e83ee0
 	$(TINYGO) build -size short -o test.hex -target=circuitplay-express examples/i2s
1dd9e93
@@ -293,8 +285,6 @@ smoketest:
1dad7a6
 	@$(MD5SUM) test.hex
f7d3f8d
 	$(TINYGO) build -size short -o test.hex -target=particle-xenon      examples/blinky1
3e3821d
 	@$(MD5SUM) test.hex
3e3821d
-	$(TINYGO) build -size short -o test.hex -target=nucleo-f103rb       examples/blinky1
3e3821d
-	@$(MD5SUM) test.hex
1dad7a6
 	$(TINYGO) build -size short -o test.hex -target=pinetime-devkit0    examples/blinky1
3e3821d
 	@$(MD5SUM) test.hex
1dad7a6
 	$(TINYGO) build -size short -o test.hex -target=x9pro               examples/blinky1
b34ba92
-- 
1dd9e93
2.26.2
b34ba92