Skip to content

Commit 6d6cd17

Browse files
committed
use env for ARDUINO_LIBS, try to build ch32
1 parent 8f7fe50 commit 6d6cd17

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

.github/workflows/githubci.yml

+30-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ concurrency:
66
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
77
cancel-in-progress: true
88

9+
env:
10+
ARDUINO_LIBS:
11+
- 'Adafruit SPIFlash'
12+
- 'MIDI Library'
13+
- 'Adafruit seesaw Library'
14+
- 'Adafruit NeoPixel'
15+
- 'SdFat - Adafruit Fork'
16+
- 'SD'
17+
- 'Adafruit Circuit Playground'
18+
- 'Adafruit InternalFlash'
19+
- 'Pico PIO USB'
20+
921
jobs:
1022
pre-commit:
1123
runs-on: ubuntu-latest
@@ -34,6 +46,9 @@ jobs:
3446
PRETTYNAME : "Adafruit TinyUSB Library"
3547
run: bash ci/doxy_gen_and_deploy.sh
3648

49+
# ---------------------------------------
50+
# Main
51+
# ---------------------------------------
3752
build:
3853
runs-on: ubuntu-latest
3954
needs: pre-commit
@@ -53,7 +68,8 @@ jobs:
5368
# SAMD
5469
- 'metro_m0_tinyusb'
5570
- 'metro_m4_tinyusb'
56-
71+
# Ch32v2
72+
- 'CH32V20x_EVT'
5773
steps:
5874
- name: Checkout code
5975
uses: actions/checkout@v4
@@ -62,17 +78,28 @@ jobs:
6278
uses: actions/checkout@v4
6379
with:
6480
repository: adafruit/ci-arduino
81+
ref: add-ch32v2
6582
path: ci
6683

6784
- name: pre-install
6885
run: bash ci/actions_install.sh
6986

70-
- name: Install Libraries for building examples
71-
run: arduino-cli lib install "Adafruit SPIFlash" "MIDI Library" "Adafruit seesaw Library" "Adafruit NeoPixel" "SdFat - Adafruit Fork" "SD" "Adafruit Circuit Playground" "Adafruit InternalFlash" "Pico PIO USB"
87+
- name: Install Libraries
88+
run: |
89+
LIBS_STRING=""
90+
for lib in "${{ env.ARDUINO_LIBS[@] }}"; do
91+
LIBS_STRING+="\"$lib\" "
92+
done
93+
echo "$LIBS_STRING"
94+
# arduino-cli lib install "Adafruit SPIFlash" "MIDI Library" "Adafruit seesaw Library" "Adafruit NeoPixel" "SdFat - Adafruit Fork" "SD" "Adafruit Circuit Playground" "Adafruit InternalFlash" "Pico PIO USB"
95+
arduino-cli lib install $LIBS_STRING
7296
7397
- name: test platforms
7498
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }}
7599

100+
# ---------------------------------------
101+
# Build ESP32 v2
102+
# ---------------------------------------
76103
build-esp32-v2:
77104
if: false
78105
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)