@@ -6,6 +6,18 @@ concurrency:
6
6
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7
7
cancel-in-progress : true
8
8
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
+
9
21
jobs :
10
22
pre-commit :
11
23
runs-on : ubuntu-latest
34
46
PRETTYNAME : " Adafruit TinyUSB Library"
35
47
run : bash ci/doxy_gen_and_deploy.sh
36
48
49
+ # ---------------------------------------
50
+ # Main
51
+ # ---------------------------------------
37
52
build :
38
53
runs-on : ubuntu-latest
39
54
needs : pre-commit
53
68
# SAMD
54
69
- ' metro_m0_tinyusb'
55
70
- ' metro_m4_tinyusb'
56
-
71
+ # Ch32v2
72
+ - ' CH32V20x_EVT'
57
73
steps :
58
74
- name : Checkout code
59
75
uses : actions/checkout@v4
@@ -62,17 +78,28 @@ jobs:
62
78
uses : actions/checkout@v4
63
79
with :
64
80
repository : adafruit/ci-arduino
81
+ ref : add-ch32v2
65
82
path : ci
66
83
67
84
- name : pre-install
68
85
run : bash ci/actions_install.sh
69
86
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
72
96
73
97
- name : test platforms
74
98
run : python3 ci/build_platform.py ${{ matrix.arduino-platform }}
75
99
100
+ # ---------------------------------------
101
+ # Build ESP32 v2
102
+ # ---------------------------------------
76
103
build-esp32-v2 :
77
104
if : false
78
105
runs-on : ubuntu-latest
0 commit comments