From 4a2e44d70a55a0327149f0622c8f986f8a2a774c Mon Sep 17 00:00:00 2001 From: Nicolas Rabault Date: Tue, 14 May 2024 09:41:56 +0200 Subject: [PATCH 1/3] Try to fix the python setup --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94df7de52..1b77a1fc5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.10.5" + python-version: "3.10" - name: Install dependencies run: | @@ -71,7 +71,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.10.5" + python-version: "3.10" - name: Set up Node uses: actions/setup-node@v2 @@ -115,7 +115,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.10.5" + python-version: "3.10" - name: Install dependencies run: | From 57568d44d1e9e587ed075461af2ef2bb252428a8 Mon Sep 17 00:00:00 2001 From: Nicolas Rabault Date: Tue, 14 May 2024 10:54:26 +0200 Subject: [PATCH 2/3] Use previous version of RTOS avoiding compilation failure. --- examples/projects/l0/button_freertos/platformio.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/projects/l0/button_freertos/platformio.ini b/examples/projects/l0/button_freertos/platformio.ini index cc7547584..4dc77c2c3 100644 --- a/examples/projects/l0/button_freertos/platformio.ini +++ b/examples/projects/l0/button_freertos/platformio.ini @@ -33,6 +33,7 @@ build_unflags = -Os build_flags = -include node_config.h -DSTM32F0 ;FreeRTos arch selection + -DFREERTOS_TAG=V11.0.1 -O1 [env:l0_with_bootloader] @@ -43,6 +44,7 @@ build_flags = -O1 -DSTM32F0 ;FreeRTos arch selection -DWITH_BOOTLOADER + -DFREERTOS_TAG=V11.0.1 upload_protocol = custom upload_flags = -t2 From 3d15a2585cf5b5b2e620e8a68de18988fbafe03b Mon Sep 17 00:00:00 2001 From: Nicolas Rabault Date: Tue, 14 May 2024 11:47:13 +0200 Subject: [PATCH 3/3] Remove ESP32 compilation because of an unknown python error --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b77a1fc5..be726d163 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -103,7 +103,7 @@ jobs: examples/projects/NUCLEO-F072RB, examples/projects/NUCLEO-L073RZ, examples/projects/STM32L4S5_discovery, - examples/projects/ESP32, + # examples/projects/ESP32, examples/projects/native, ] os: [macos-latest, windows-latest, ubuntu-latest]