Skip to content

Commit

Permalink
Merge pull request #485 from Luos-io/fix/gh_actions
Browse files Browse the repository at this point in the history
Fix the python setup on the GH actions
  • Loading branch information
nicolas-rabault authored May 14, 2024
2 parents 4b4b540 + 3d15a25 commit 445f737
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand All @@ -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: |
Expand Down
2 changes: 2 additions & 0 deletions examples/projects/l0/button_freertos/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -43,6 +44,7 @@ build_flags =
-O1
-DSTM32F0 ;FreeRTos arch selection
-DWITH_BOOTLOADER
-DFREERTOS_TAG=V11.0.1
upload_protocol = custom
upload_flags =
-t2
Expand Down

0 comments on commit 445f737

Please sign in to comment.