Fix: do not change the speed of the JSY by default and detect the cur… #22
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Continuous Integration | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cpplint: | |
name: cpplint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
key: ${{ runner.os }}-cpplint | |
path: ~/.cache/pip | |
- name: Pyhton | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: cpplint | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade cpplint | |
cpplint \ | |
--repository=. \ | |
--recursive \ | |
--filter=-whitespace/line_length,-whitespace/braces,-whitespace/comments,-runtime/indentation_namespace,-whitespace/indent,-readability/braces,-whitespace/newline,-readability/todo,-build/c++11 \ | |
src | |
arduino: | |
name: Arduino | |
needs: cpplint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- core: esp32:esp32 | |
board: esp32:esp32:esp32 | |
eeprom: true | |
softwareserial: false | |
index_url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install arduino-cli | |
run: curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=/usr/local/bin sh | |
- name: Update core index | |
run: arduino-cli core update-index --additional-urls "${{ matrix.index_url }}" | |
- name: Install core | |
run: arduino-cli core install --additional-urls "${{ matrix.index_url }}" ${{ matrix.core }} | |
- name: Install ArduinoJson | |
run: arduino-cli lib install ArduinoJson | |
- name: Install MycilaLogger | |
run: arduino-cli lib install MycilaLogger | |
- name: Build JSYRead | |
run: arduino-cli compile --library . --warnings all -b ${{ matrix.board }} "examples/JSYRead/JSYRead.ino" | |
- name: Build JSYReadAsync | |
run: arduino-cli compile --library . --warnings all -b ${{ matrix.board }} "examples/JSYReadAsync/JSYReadAsync.ino" | |
- name: Build EnergyReset | |
run: arduino-cli compile --library . --warnings all -b ${{ matrix.board }} "examples/EnergyReset/EnergyReset.ino" | |
- name: Build EnergyResetAsync | |
run: arduino-cli compile --library . --warnings all -b ${{ matrix.board }} "examples/EnergyResetAsync/EnergyResetAsync.ino" | |
- name: Build SetSpeed | |
run: arduino-cli compile --library . --warnings all -b ${{ matrix.board }} "examples/SetSpeed/SetSpeed.ino" | |
platformio: | |
name: PlatformIO | |
needs: cpplint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- platform: espressif32 | |
board: esp32dev | |
eeprom: true | |
softwareserial: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.platformio | |
~/.cache/pip | |
key: ${{ runner.os }}-platformio | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install PlatformIO | |
run: pip install platformio | |
- name: Install platform "${{ matrix.platform }}" | |
run: platformio platform install ${{ matrix.platform }} | |
- name: Build JSYRead | |
run: platformio ci "examples/JSYRead/JSYRead.ino" -l '.' -b ${{ matrix.board }} | |
- name: Build JSYReadAsync | |
run: platformio ci "examples/JSYReadAsync/JSYReadAsync.ino" -l '.' -b ${{ matrix.board }} | |
- name: Build EnergyReset | |
run: platformio ci "examples/EnergyReset/EnergyReset.ino" -l '.' -b ${{ matrix.board }} | |
- name: Build EnergyResetAsync | |
run: platformio ci "examples/EnergyResetAsync/EnergyResetAsync.ino" -l '.' -b ${{ matrix.board }} | |
- name: Build SetSpeed | |
run: platformio ci "examples/SetSpeed/SetSpeed.ino" -l '.' -b ${{ matrix.board }} |