Explorar el Código

🔨 Use PlatformIO Core 6.0 Dev for CI (#24194)

Ivan Kravets hace 1 año
padre
commit
c814fe98d7
No account linked to committer's email address
Se han modificado 2 ficheros con 5 adiciones y 4 borrados
  1. 3
    2
      .github/workflows/test-builds.yml
  2. 2
    2
      docker/Dockerfile

+ 3
- 2
.github/workflows/test-builds.yml Ver fichero

@@ -138,8 +138,9 @@ jobs:
138 138
 
139 139
     - name: Install PlatformIO
140 140
       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
143 144
 
144 145
     - name: Run ${{ matrix.test-platform }} Tests
145 146
       run: |

+ 2
- 2
docker/Dockerfile Ver fichero

@@ -1,7 +1,7 @@
1 1
 FROM python:3.9.0-buster
2 2
 
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
5 5
 # To get the test platforms
6 6
 RUN pip install PyYaml
7 7
 #ENV PATH /code/buildroot/bin/:/code/buildroot/tests/:${PATH}

Loading…
Cancelar
Guardar