diff options
author | Wojtek Siudzinski <[email protected]> | 2020-02-18 15:54:52 +0100 |
---|---|---|
committer | Daniel Esteban <[email protected]> | 2020-02-18 23:34:56 +0100 |
commit | 765440b8ecb7091b8614c5b005017fd90b00550b (patch) | |
tree | 29d39ec6ff6bd88a246aa7a3d8eaa9729356d4f1 /Makefile | |
parent | b07b13ca1b12cf3cfcd54b5a3d0cfae5df9d8510 (diff) | |
download | tinygo-765440b8ecb7091b8614c5b005017fd90b00550b.tar.gz tinygo-765440b8ecb7091b8614c5b005017fd90b00550b.zip |
Add smoke tests
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -272,6 +272,12 @@ smoketest: @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=pyportal examples/blinky1 @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=particle-argon examples/blinky1 + @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=particle-boron examples/blinky1 + @$(MD5SUM) test.hex + $(TINYGO) build -size short -o test.hex -target=particle-xenon examples/blinky1 + @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=nucleo-f103rb examples/blinky1 @$(MD5SUM) test.hex $(TINYGO) build -size short -o test.hex -target=pinetime-devkit0 examples/blinky1 |