From a29df8b4f136623fa333ae9abcae962b259e6356 Mon Sep 17 00:00:00 2001 From: Thomas Ballmann Date: Sun, 16 May 2021 20:15:37 +0200 Subject: [PATCH] Update firmware.yml --- .github/workflows/firmware.yml | 46 ++++++++++++++-------------------- 1 file changed, 19 insertions(+), 27 deletions(-) diff --git a/.github/workflows/firmware.yml b/.github/workflows/firmware.yml index 4df9de1..10be68e 100644 --- a/.github/workflows/firmware.yml +++ b/.github/workflows/firmware.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Firmware +name: Build Firmware # Controls when the action will run. on: @@ -22,38 +22,30 @@ 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: 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@v2 + - 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: Install library dependencies +# run: pio lib -g install 1 + - name: Run PlatformIO run: pio run -e esp32 - - - - # Runs a single command using the runners shell -# - name: Run a one-line script -# run: echo Hello, world! - - # Runs a set of commands using the runners shell -# - name: Run a multi-line script -# run: | -# echo Add other actions to build, -# echo test, and deploy your project.