Skip to content

Commit bb33d18

Browse files
ivankravetsOmkar Dhekne
authored and
Omkar Dhekne
committedMar 25, 2024
🔨 Use PlatformIO Core 6.0 Dev for CI (MarlinFirmware#24194)
1 parent e1c91b9 commit bb33d18

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎.github/workflows/test-builds.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,9 @@ jobs:
138138

139139
- name: Install PlatformIO
140140
run: |
141-
pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip
142-
platformio update
141+
pip install -U platformio
142+
pio upgrade --dev
143+
pio pkg update --global
143144
144145
- name: Run ${{ matrix.test-platform }} Tests
145146
run: |

‎docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.9.0-buster
22

3-
RUN pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip
4-
RUN platformio update
3+
RUN pip install -U platformio
4+
RUN pio upgrade --dev
55
# To get the test platforms
66
RUN pip install PyYaml
77
#ENV PATH /code/buildroot/bin/:/code/buildroot/tests/:${PATH}

0 commit comments

Comments
 (0)
Please sign in to comment.