targets: fix build tag duplicates

and add missing targets to smoke test
Этот коммит содержится в:
Yurii Soldak 2022-09-02 23:52:05 +02:00 коммит произвёл Ron Evans
родитель 02160aa8d8
коммит d7814ff50b
3 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -528,6 +528,8 @@ endif
@$(MD5SUM) test.hex @$(MD5SUM) test.hex
$(TINYGO) build -size short -o test.hex -target=feather-m4 examples/blinky1 $(TINYGO) build -size short -o test.hex -target=feather-m4 examples/blinky1
@$(MD5SUM) test.hex @$(MD5SUM) test.hex
$(TINYGO) build -size short -o test.hex -target=matrixportal-m4 examples/blinky1
@$(MD5SUM) test.hex
$(TINYGO) build -size short -o test.hex -target=pybadge examples/blinky1 $(TINYGO) build -size short -o test.hex -target=pybadge examples/blinky1
@$(MD5SUM) test.hex @$(MD5SUM) test.hex
$(TINYGO) build -size short -o test.hex -target=metro-m4-airlift examples/blinky1 $(TINYGO) build -size short -o test.hex -target=metro-m4-airlift examples/blinky1
@ -690,7 +692,9 @@ ifneq ($(XTENSA), 0)
$(TINYGO) build -size short -o test.bin -target mch2022 examples/serial $(TINYGO) build -size short -o test.bin -target mch2022 examples/serial
@$(MD5SUM) test.bin @$(MD5SUM) test.bin
endif endif
$(TINYGO) build -size short -o test.bin -target=esp32c3 examples/serial $(TINYGO) build -size short -o test.bin -target=esp32c3 examples/serial
@$(MD5SUM) test.bin
$(TINYGO) build -size short -o test.bin -target=esp32c3-12f examples/serial
@$(MD5SUM) test.bin @$(MD5SUM) test.bin
$(TINYGO) build -size short -o test.bin -target=m5stamp-c3 examples/serial $(TINYGO) build -size short -o test.bin -target=m5stamp-c3 examples/serial
@$(MD5SUM) test.bin @$(MD5SUM) test.bin

Просмотреть файл

@ -1,5 +1,5 @@
{ {
"inherits": ["esp32c3"], "inherits": ["esp32c3"],
"build-tags": ["esp32c312f", "esp32c3", "esp"] "build-tags": ["esp32c312f"]
} }

Просмотреть файл

@ -1,6 +1,6 @@
{ {
"inherits": ["atsamd51j19a"], "inherits": ["atsamd51j19a"],
"build-tags": ["atsamd51j19a", "matrixportal_m4"], "build-tags": ["matrixportal_m4"],
"serial": "usb", "serial": "usb",
"serial-port": ["acm:239a:80c9", "acm:239a:00c9", "acm:239a:80ca"], "serial-port": ["acm:239a:80c9", "acm:239a:00c9", "acm:239a:80ca"],
"flash-1200-bps-reset": "true", "flash-1200-bps-reset": "true",