pioarduino v6.1.19

* remove telemetry
* no full git clone
* add intelhex as required
* no core packages
* add `rich_click` as pip dependencies
* remove advertisings
* add intelhex as required
* install scons and Pio home from github
* replace "get_core_package_dir" for piohome and pioremote
This commit is contained in:
Jason2866
2026-02-04 16:10:37 +01:00
committed by GitHub
parent 15b8859aee
commit 1a303113e9
41 changed files with 374 additions and 2769 deletions
+22 -29
View File
@@ -1,6 +1,8 @@
name: Projects
on: [push, pull_request]
on:
workflow_dispatch: # Manually start a workflow
push:
jobs:
build:
@@ -8,49 +10,40 @@ jobs:
fail-fast: false
matrix:
project:
- marlin:
repository: "MarlinFirmware/Marlin"
folder: "Marlin"
config_dir: "Marlin"
env_name: "mega2560"
- smartknob:
repository: "scottbez1/smartknob"
folder: "smartknob"
config_dir: "smartknob"
env_name: "view"
- espurna:
repository: "xoseperez/espurna"
folder: "espurna"
config_dir: "espurna/code"
env_name: "nodemcu-lolin"
- OpenMQTTGateway:
repository: "1technophile/OpenMQTTGateway"
folder: "OpenMQTTGateway"
config_dir: "OpenMQTTGateway"
env_name: "esp32-m5atom-lite"
- PlatformTest:
repository: "Jason2866/platform-test"
folder: "src"
config_dir: "src"
env_name: "esp32-s3"
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.13
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
version: "latest"
enable-cache: false
- name: Install PlatformIO
run: pip install -U .
run: uv pip install --system -U .
- name: Check out ${{ matrix.project.repository }}
uses: actions/checkout@v6
uses: actions/checkout@v4
with:
submodules: "recursive"
repository: ${{ matrix.project.repository }}
path: ${{ matrix.project.folder }}
- name: Compile ${{ matrix.project.repository }}
run: pio run -d ${{ matrix.project.config_dir }} -e ${{ matrix.project.env_name }}
- name: Compile example ${{ matrix.project.repository }}
run: |
pio run -d ${{ matrix.project.config_dir }} -e ${{ matrix.project.env_name }}