Skip to content

Commit deee261

Browse files
authored
Support arduino-esp32 v2.0.17 (#19)
1 parent 3048ee0 commit deee261

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/compile-sketches.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
compile-sketches:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- uses: arduino/compile-sketches@v1
2323
with:
2424
enable-deltas-report: true
@@ -28,6 +28,7 @@ jobs:
2828
platforms: | # ESP32公式のpackage indexを使用する
2929
- name: esp32:esp32
3030
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
31+
version: 2.0.17
3132
libraries: | # RTがカスタマイズしたmicro_ros_arduinoライブラリを使用する
3233
- source-url: https://github.com/rt-net/micro_ros_arduino/archive/refs/tags/esp32s3-230417.zip
3334
cli-compile-flags: | # 警告がエラーとして扱われるので、対処しない警告はエラーから除外する
@@ -50,7 +51,7 @@ jobs:
5051
5152
# This step is needed to pass the size data to the report job
5253
- name: Upload sketches report to workflow artifact
53-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5455
with:
5556
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
5657
path: ${{ env.SKETCHES_REPORTS_PATH }}
@@ -62,12 +63,14 @@ jobs:
6263
steps:
6364
# This step is needed to get the size data produced by the compile jobs
6465
- name: Download sketches reports artifact
65-
uses: actions/download-artifact@v3
66+
uses: actions/download-artifact@v4
6667
with:
6768
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
6869
path: ${{ env.SKETCHES_REPORTS_PATH }}
70+
continue-on-error: true
6971

7072
- uses: arduino/report-size-deltas@v1
7173
with:
7274
sketches-reports-source: ${{ env.SKETCHES_REPORTS_PATH }}
7375
github-token: ${{ secrets.GITHUB_TOKEN }}
76+
continue-on-error: true

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ Pi:Co Classic3用のmicro-ROS Arduinoサンプルスケッチ集です。
1111
を搭載したPi:Co Classic3を、
1212
**Arduino**および**micro-ROS**で動かせます。
1313

14+
## 動作環境
15+
16+
- arduino-esp32 : v2.0.17
17+
1418
## サンプルスケッチについて
1519

1620
### STEP1 ~ STEP8

0 commit comments

Comments
 (0)