Skip to content

Actions v4

Actions v4 #10

Workflow file for this run

name: ESP Code Build
on:
push:
branches:
- master
jobs:
test_builds:
runs-on: ubuntu-latest
strategy:
matrix:
test-platform:
- esp32dev
env:
name: esp32-sigrok.bin
steps:
- name: Select Python 3.7
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install PlatformIO
run: |
pip install -U https://github.com/platformio/platformio-core/archive/master.zip
platformio update
- name: Check out the Release
uses: actions/checkout@v4
- name: Run PlatformIO for ${{ matrix.test-platform }}
run: platformio run -e ${{ matrix.test-platform }}
- uses: actions/upload-artifact@v4
with:
name: ${{ env.name }}
path: .pio/build/esp32dev/firmware.bin