Skip to content

Commit

Permalink
Add supported core and fixes bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
GOB52 committed Oct 24, 2024
1 parent dff059a commit 2ecf439
Show file tree
Hide file tree
Showing 20 changed files with 404 additions and 87 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ArduinoBuild(platform-version 2.x)
name: Build(arduino-esp32:2.x)

env:
SKETCH_NAMES_FIND_START: ./examples/UnitUnified
Expand All @@ -8,6 +8,7 @@ on:
push:
tags-ignore:
- '*.*.*'
- 'v*.*.*'
branches:
- '*'
paths:
Expand All @@ -24,7 +25,7 @@ on:
- 'examples/UnitUnified/**.hpp'
- 'examples/UnitUnified/**.h'
- 'examples/UnitUnified/**.c'
- '**ArduinoBuild_2.yml'
- '**arduino-esp-v2-build-check.yml'
pull_request:
paths:
- 'src/unit/**.cpp'
Expand All @@ -40,12 +41,12 @@ on:
- 'examples/UnitUnified/**.hpp'
- 'examples/UnitUnified/**.h'
- 'examples/UnitUnified/**.c'
- '**ArduinoBuild_2.yml'
- '**arduino-esp-v2-build-check.yml'
workflow_dispatch:

jobs:
build:
name: ${{ matrix.unit }}:${{ matrix.sketch }}:${{ matrix.board }}@${{ matrix.platform-version }}
name: ${{ matrix.unit }}:${{ matrix.sketch }}:${{matrix.board}}@${{matrix.platform-version}}
runs-on: ubuntu-latest

strategy:
Expand All @@ -54,7 +55,6 @@ jobs:
matrix:
platform-url:
- https://espressif.github.io/arduino-esp32/package_esp32_index.json
# - https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/arduino/package_m5stack_index.json

sketch:
- PlotToSerial
Expand All @@ -64,14 +64,15 @@ jobs:
- UnitToF4M

board:
- m5stack-atom
- m5stack-atoms3
- m5stack-core-esp32
- m5stack-core2
- m5stack-atoms3
- m5stack-coreink
- m5stack-cores3
- m5stack-fire

platform-version:
#- 2.0.15
#- 2.0.16
- 2.0.17

platform:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: ArduinoBuild(platform-version 3.x)
name: Build(arduino-esp32:3.x)

env:
SKETCH_NAMES_FIND_START: ./examples/UnitUnified
REQUIRED_LIBRARIES: M5Unified,M5UnitUnified

on:
push:
tags-ignore:
- '*.*.*'
- 'v*.*.*'
branches:
- '*'
paths:
Expand All @@ -24,7 +24,7 @@ on:
- 'examples/UnitUnified/**.hpp'
- 'examples/UnitUnified/**.h'
- 'examples/UnitUnified/**.c'
- '**ArduinoBuild_3.yml'
- '**arduino-esp-v3-build-check.yml'
pull_request:
paths:
- 'src/unit/**.cpp'
Expand All @@ -40,7 +40,7 @@ on:
- 'examples/UnitUnified/**.hpp'
- 'examples/UnitUnified/**.h'
- 'examples/UnitUnified/**.c'
- '**ArduinoBuild_3.yml'
- '**arduino-esp-v3-build-check.yml'
workflow_dispatch:

jobs:
Expand All @@ -54,30 +54,41 @@ jobs:
matrix:
platform-url:
- https://espressif.github.io/arduino-esp32/package_esp32_index.json
# - https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/arduino/package_m5stack_index.json

sketch:
- PlotToSerial

unit:
- UnitToF
- UnitToF4M

sketch:
- PlotToSerial

board:
- m5stack_atom
- m5stack_atoms3
- m5stack_capsule
# - m5stack_cardputer
- m5stack_core
- m5stack_core2
- m5stack_atoms3
- m5stack_coreink
- m5stack_cores3
- m5stack_dial
- m5stack_fire
- m5stack_nanoc6
- m5stack_paper
# - m5stack_poe_cam
# - m5stack_stamp_c3
# - m5stack_stamp_pico
- m5stack_stamp_s3
# - m5stack_station
# - m5stack_stickc
- m5stack_stickc_plus
- m5stack_stickc_plus2
# - m5stack_timer_cam
# - m5stack_tough
# - m5stack_unit_cam
# - m5stack_unit_cams3

platform-version:
#- 3.0.0
#- 3.0.1
#- 3.0.2
#- 3.0.3
- 3.0.4

platform:
Expand Down
121 changes: 121 additions & 0 deletions .github/workflows/arduino-m5-build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
name: Build(arduino-m5stack)

env:
SKETCH_NAMES_FIND_START: ./examples/UnitUnified
REQUIRED_LIBRARIES: M5Unified,M5UnitUnified

on:
push:
tags-ignore:
- '*.*.*'
- 'v*.*.*'
branches:
- '*'
paths:
- 'src/unit/**.cpp'
- 'src/unit/**.hpp'
- 'src/unit/**.h'
- 'src/unit/**.c'
- 'test/**.cpp'
- 'test/**.hpp'
- 'test/**.h'
- 'test/**.c'
- 'examples/UnitUnified/**.ino'
- 'examples/UnitUnified/**.cpp'
- 'examples/UnitUnified/**.hpp'
- 'examples/UnitUnified/**.h'
- 'examples/UnitUnified/**.c'
- '**arduino-m5-build-check.yml'
pull_request:
paths:
- 'src/unit/**.cpp'
- 'src/unit/**.hpp'
- 'src/unit/**.h'
- 'src/unit/**.c'
- 'test/**.cpp'
- 'test/**.hpp'
- 'test/**.h'
- 'test/**.c'
- 'examples/UnitUnified/**.ino'
- 'examples/UnitUnified/**.cpp'
- 'examples/UnitUnified/**.hpp'
- 'examples/UnitUnified/**.h'
- 'examples/UnitUnified/**.c'
- '**arduino-m5-build-check.yml'
workflow_dispatch:

jobs:
build:
name: ${{ matrix.unit }}:${{ matrix.sketch }}:${{matrix.board}}@${{matrix.platform-version}}
runs-on: ubuntu-latest

strategy:
fail-fast: false
# max-parallel: 1
matrix:
platform-url:
- https://m5stack.oss-cn-shenzhen.aliyuncs.com/resource/arduino/package_m5stack_index.json

sketch:
- PlotToSerial

unit:
- UnitToF
- UnitToF4M

board:
- m5stack_atom
- m5stack_atoms3
- m5stack_atoms3r
- m5stack_capsule
# - m5stack_cardputer
- m5stack_core
- m5stack_core2
- m5stack_coreink
- m5stack_cores3
- m5stack_dial
- m5stack_dinmeter
- m5stack_fire
- m5stack_paper
# - m5stack_poe_cam
# - m5stack_stamp_c3
# - m5stack_stamp_pico
- m5stack_stamp_s3
# - m5stack_station
# - m5stack_stickc
- m5stack_stickc_plus
- m5stack_stickc_plus2
# - m5stack_timer_cam
# - m5stack_tough
# - m5stack_unit_cam
# - m5stack_unit_cams3

platform-version:
- 2.1.2

platform:
- m5stack

archi:
- esp32

steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

# Build
- name: Compile examples
uses: ArminJo/arduino-test-compile@master
with:
arduino-board-fqbn: ${{ matrix.platform }}:${{ matrix.archi }}:${{ matrix.board }}
arduino-platform: ${{ matrix.platform }}:${{ matrix.archi }}@${{ matrix.platform-version }}
platform-url: ${{ matrix.platform-url }}
required-libraries: ${{ env.REQUIRED_LIBRARIES }}
extra-arduino-cli-args: ${{ matrix.cli-args }}
#build-properties: ${{ toJson(matrix.build-properties) }}
sketch-names: ${{ matrix.sketch }}.ino
sketch-names-find-start: ${{ env.SKETCH_NAMES_FIND_START }}/${{ matrix.unit }}
#sketches-exclude: ${{ matrix.sketches-exclude }}

1 change: 0 additions & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ on:
branches:
- '*'
paths:
- '*'
- '**.ino'
- '**.cpp'
- '**.hpp'
Expand Down
Loading

0 comments on commit 2ecf439

Please sign in to comment.