@@ -10,16 +10,11 @@ jobs:
10
10
pre-commit :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - name : Setup Python
14
- uses : actions/setup-python@v5
15
- with :
16
- python-version : ' 3.x'
17
-
18
13
- name : Checkout code
19
14
uses : actions/checkout@v4
20
15
21
16
- name : Run pre-commit
22
- uses :
pre-commit/[email protected] .0
17
+ uses :
pre-commit/[email protected] .1
23
18
24
19
- name : Checkout adafruit/ci-arduino
25
20
uses : actions/checkout@v4
@@ -60,18 +55,14 @@ jobs:
60
55
- ' metro_m4_tinyusb'
61
56
62
57
steps :
63
- - name : Setup Python
64
- uses : actions/setup-python@v5
65
- with :
66
- python-version : ' 3.x'
67
-
68
58
- name : Checkout code
69
59
uses : actions/checkout@v4
70
60
71
61
- name : Checkout adafruit/ci-arduino
72
62
uses : actions/checkout@v4
73
63
with :
74
64
repository : adafruit/ci-arduino
65
+ ref : importable-build_platform
75
66
path : ci
76
67
77
68
- name : pre-install
@@ -83,23 +74,20 @@ jobs:
83
74
- name : test platforms
84
75
run : python3 ci/build_platform.py ${{ matrix.arduino-platform }}
85
76
86
- build-esp32-stable :
77
+ build-esp32-v2 :
78
+ if : false
87
79
runs-on : ubuntu-latest
88
80
needs : pre-commit
89
81
strategy :
90
82
fail-fast : false
91
83
matrix :
92
84
arduino-platform :
93
- # ESP32
94
85
- ' feather_esp32s2'
95
86
- ' feather_esp32s3'
87
+ esp32-version :
88
+ - ' 2.0.17'
96
89
97
90
steps :
98
- - name : Setup Python
99
- uses : actions/setup-python@v5
100
- with :
101
- python-version : ' 3.x'
102
-
103
91
- name : Checkout code
104
92
uses : actions/checkout@v4
105
93
@@ -113,21 +101,23 @@ jobs:
113
101
- name : pre-install
114
102
run : bash ci/actions_install.sh
115
103
116
- - name : Install arduino-esp32 stable and Libraries
104
+ - name : Install arduino-esp32 v2 and Libraries
117
105
env :
118
106
BSP_URLS : https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
119
107
run : |
120
- arduino-cli core install esp32:esp32 --additional-urls $BSP_URLS
108
+ arduino-cli core install esp32:esp32@${{ matrix.esp32-version }} --additional-urls $BSP_URLS
121
109
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"
122
110
arduino-cli core list
123
111
arduino-cli lib list
124
112
125
113
- name : Create custom build script
126
114
working-directory : ${{ github.workspace }}/ci
127
115
run : |
128
- echo 'import build_platform' > build_esp32_stable.py
129
- echo 'build_platform.test_examples_in_folder("'${{ matrix.arduino-platform }}'")' >> build_esp32_v2.py
116
+ echo 'import build_platform' > build_esp32_v2.py
117
+ echo 'build_platform.test_examples_in_folder("'${{ matrix.arduino-platform }}'", build_platform.BUILD_DIR)' >> build_esp32_v2.py
118
+ echo 'exit(build_platform.success)' >> build_esp32_v2.py
119
+ cat build_esp32_v2.py
130
120
131
121
- name : test platforms
132
122
run : |
133
- python3 ci/build_esp32_stable .py
123
+ python3 ci/build_esp32_v2 .py
0 commit comments