Skip to content

Update Configuration.h #13

Update Configuration.h

Update Configuration.h #13

Workflow file for this run

name: Firmware build
on:
workflow_dispatch:
push:
branches:
- MyCR10-S_2.1.x
- test
paths-ignore:
- config/**
- data/**
- docs/**
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Select Python 3.7
uses: actions/setup-python@v3
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
pio upgrade
pio pkg update --global
- name: Run PlatformIO
run: pio run
- name: Upload the Build Artifact
uses: actions/upload-artifact@v3
with:
name: Robin_e3.bin
path: .pio/build/mks_robin_e3/Robin_e3.bin