From fe77fc66c0004ba9a4459dd5a12c978dd0308bb1 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 18 May 2022 00:47:11 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Use=20PlatformIO=20Core=206.0=20?= =?UTF-8?q?Dev=20for=20CI=20(#24194)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-builds.yml | 5 +++-- docker/Dockerfile | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-builds.yml b/.github/workflows/test-builds.yml index e339f85646..2d94b000c6 100644 --- a/.github/workflows/test-builds.yml +++ b/.github/workflows/test-builds.yml @@ -138,8 +138,9 @@ jobs: - name: Install PlatformIO run: | - pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip - platformio update + pip install -U platformio + pio upgrade --dev + pio pkg update --global - name: Run ${{ matrix.test-platform }} Tests run: | diff --git a/docker/Dockerfile b/docker/Dockerfile index ad3e15d5de..7d32f9c637 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.9.0-buster -RUN pip install -U https://github.com/platformio/platformio-core/archive/v5.2.5.zip -RUN platformio update +RUN pip install -U platformio +RUN pio upgrade --dev # To get the test platforms RUN pip install PyYaml #ENV PATH /code/buildroot/bin/:/code/buildroot/tests/:${PATH}