We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1c91b9 commit bb33d18Copy full SHA for bb33d18
.github/workflows/test-builds.yml
@@ -138,8 +138,9 @@ jobs:
138
139
- name: Install PlatformIO
140
run: |
141
- pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip
142
- platformio update
+ pip install -U platformio
+ pio upgrade --dev
143
+ pio pkg update --global
144
145
- name: Run ${{ matrix.test-platform }} Tests
146
docker/Dockerfile
@@ -1,7 +1,7 @@
1
FROM python:3.9.0-buster
2
3
-RUN pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip
4
-RUN platformio update
+RUN pip install -U platformio
+RUN pio upgrade --dev
5
# To get the test platforms
6
RUN pip install PyYaml
7
#ENV PATH /code/buildroot/bin/:/code/buildroot/tests/:${PATH}
0 commit comments