Introduce state machine #452
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
cpplint: | |
name: CPP Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- run: pip install cpplint | |
- run: cpplint --linelength 140 --filter=-legal/copyright,-runtime/int,-build/include_subdir,-readability/casting,-readability/todo --recursive ./inc/ ./lib/ ./src/ | |
pio-build: | |
name: PlatformIO Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install Platform IO | |
run: | | |
python -m pip install --upgrade pip | |
pip install -U platformio | |
- name: Build | |
run: platformio run | |
- name: Archive bin | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bins | |
path: .pio/build/**/firmware.bin | |
- name: Save uf2 for RP2040 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: OpenPPG-CRP2040-SP140.uf2 | |
path: .pio/build/OpenPPG-CRP2040-SP140/firmware.uf2 | |
# Skip until M0 builds running by default | |
# generate-uf2: | |
# name: Save uf2 for ${{ matrix.device }} | |
# needs: pio-build | |
# runs-on: ubuntu-latest | |
# strategy: | |
# matrix: | |
# device: [OpenPPG-CM0-SP140] | |
# fail-fast: false | |
# steps: | |
# - name: Setup Python | |
# uses: actions/setup-python@v4 | |
# - name: Checkout Microsoft uf2 repo | |
# uses: actions/checkout@v3 | |
# with: | |
# repository: microsoft/uf2 | |
# - name: Download built binary | |
# uses: actions/download-artifact@v2 | |
# with: | |
# name: bins | |
# - name: Run uf2 conversion | |
# run: python3 utils/uf2conv.py ${{ matrix.device }}/firmware.bin -c -o ${{ matrix.device }}.uf2 | |
# - uses: actions/upload-artifact@v4 | |
# with: | |
# name: ${{ matrix.device }}.uf2 | |
# path: ${{ matrix.device }}.uf2 |