Browse Source

💚 Lock CI testing to PlatformIO 5.2.5

Scott Lahteine 3 years ago
parent
commit
492d91791c
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      .github/workflows/test-builds.yml
  2. 1
    1
      docker/Dockerfile

+ 1
- 1
.github/workflows/test-builds.yml View File

137
 
137
 
138
     - name: Install PlatformIO
138
     - name: Install PlatformIO
139
       run: |
139
       run: |
140
-        pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
140
+        pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip
141
         platformio update
141
         platformio update
142
 
142
 
143
     - name: Run ${{ matrix.test-platform }} Tests
143
     - name: Run ${{ matrix.test-platform }} Tests

+ 1
- 1
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/develop.zip
3
+RUN pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip
4
 RUN platformio update
4
 RUN platformio update
5
 # To get the test platforms
5
 # To get the test platforms
6
 RUN pip install PyYaml
6
 RUN pip install PyYaml

Loading…
Cancel
Save