diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8a25216..aceca170 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -91,7 +91,7 @@ jobs: example: - path: esp32/device-dashboard - path: esp32/uart-bridge - - path: esp8266 + - path: esp8266/http-client-server - path: stm32/stm32-freertos-tcp - path: stm32/stm32-nucleo-f746z - path: stm32/stm32-nucleo-f746zg diff --git a/examples/zephyr/Makefile b/examples/zephyr/Makefile index 9669ba6c..4130cafd 100644 --- a/examples/zephyr/Makefile +++ b/examples/zephyr/Makefile @@ -12,6 +12,8 @@ YQ ?= yq example: true +clean: + true init: ifeq ($(wildcard $(ZEPHYR_PATH)/.*),) @@ -26,4 +28,3 @@ minify: $(YQ) -i eval '(.manifest.defaults, .manifest.remotes, .manifest.projects[] | select(.name == "cmsis" or .name == "hal_stm32" or .name == "mbedtls" or .name == "mcuboot" or .name == "picolibc" | del(.null) ), .manifest.self) as $$i ireduce({};setpath($$i | path; $$i)) | del(.manifest.projects.[].null) | del(..|select(length==0))' zephyrproject/zephyr/west.yml zephyr: init minify update -