PlatformIOで作ったArduinoのLチカのプログラムをGitHub ActionsでCI (Continuous Integration, 継続的インテグレーション) する

やりました

GitHub - takurx/test-blink-pio-2: test for blink and serial by platformio and on Arduino Uno, on Ubuntu 20.04, /dev/ttyUSB0

GitHub Actions workflows

name: PlatformIO CI

on: [push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - 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@v2
    - name: Install PlatformIO
      run: |
        python -m pip install --upgrade pip
        pip install --upgrade platformio
    - name: Run PlatformIO
      run: pio ci --board=uno --board=teensy41 --board=esp32dev ./src/main.cpp
  • Arduino Unoは --board uno、ESP32-DevKitCは --board esp32dev、Teensy4.1は --board teensy41

Log

plarform run and ci command test