Browse Source

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

Ivan Kravets 1 year ago
parent
commit
c814fe98d7
No account linked to committer's email address
2 changed files with 5 additions and 4 deletions
  1. 3
    2
      .github/workflows/test-builds.yml
  2. 2
    2
      docker/Dockerfile

+ 3
- 2
.github/workflows/test-builds.yml View File

138
 
138
 
139
     - name: Install PlatformIO
139
     - name: Install PlatformIO
140
       run: |
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
     - name: Run ${{ matrix.test-platform }} Tests
145
     - name: Run ${{ matrix.test-platform }} Tests
145
       run: |
146
       run: |

+ 2
- 2
docker/Dockerfile View File

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

Loading…
Cancel
Save