From b4ff7675a47762d32b2621ed47f1fe1008ebe5a9 Mon Sep 17 00:00:00 2001 From: Thomas Ballmann Date: Mon, 17 May 2021 20:59:12 +0200 Subject: [PATCH] Update firmware.yml --- .github/workflows/firmware.yml | 39 +++++++++++----------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/.github/workflows/firmware.yml b/.github/workflows/firmware.yml index 2d8a665..9ae2326 100644 --- a/.github/workflows/firmware.yml +++ b/.github/workflows/firmware.yml @@ -24,36 +24,21 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 -# - name: Cache pip -# uses: actions/cache@v2 -# with: -# path: ~/.cache/pip -# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} -# restore-keys: | -# ${{ runner.os }}-pip- -# - name: Cache PlatformIO -# uses: actions/cache@v2 -# with: -# path: ~/.platformio -# key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} -# - - name: Set up Python - uses: actions/setup-python@v1 + - name: Build on PlatformIO + run: bash ci/build-platformio.sh + + +# - name: Set up Python +# uses: actions/setup-python@v1 - - name: Install PlatformIO - run: | - python -m pip install --upgrade pip - pip install --upgrade platformio - - - name: clean - uses: JesseTG/rm@v1.0.2 - with: - path: ~/.platformio +# - name: Install PlatformIO +# run: | +# python -m pip install --upgrade pip +# pip install --upgrade platformio # - name: Install library dependencies # run: pio lib -g install 1 - - name: Run PlatformIO -# run: platformio run - run: pio run -e esp32 +# - name: Run PlatformIO +# run: pio run -e esp32