@@ -3,7 +3,8 @@ name: ESP32 Arduino Libs CI
33on :
44 push :
55 branches :
6- - master
6+ - master
7+ - release/v5.3
78 pull_request :
89 paths :
910 - " **"
@@ -25,29 +26,30 @@ jobs:
2526 runs-on : ubuntu-latest
2627 strategy :
2728 matrix :
28- target : [esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2, esp32p4]
29+ target :
30+ [esp32, esp32s2, esp32s3, esp32c2, esp32c3, esp32c6, esp32h2, esp32p4]
2931 fail-fast : false
3032 steps :
31- - uses : actions/checkout@v4
33+ - uses : actions/checkout@v4
3234
33- - name : Install dependencies
34- run : bash ./tools/prepare-ci.sh
35+ - name : Install dependencies
36+ run : bash ./tools/prepare-ci.sh
3537
36- - name : Build Libs for ${{ matrix.target }}
37- run : bash ./build.sh -e -t ${{ matrix.target }}
38+ - name : Build Libs for ${{ matrix.target }}
39+ run : bash ./build.sh -e -t ${{ matrix.target }}
3840
39- - name : Upload build
40- if : failure()
41- uses : actions/upload-artifact@v4
42- with :
43- name : build-${{ matrix.target }}
44- path : build
41+ - name : Upload build
42+ if : failure()
43+ uses : actions/upload-artifact@v4
44+ with :
45+ name : build-${{ matrix.target }}
46+ path : build
4547
46- - name : Upload archive
47- uses : actions/upload-artifact@v4
48- with :
49- name : artifacts-${{ matrix.target }}
50- path : dist
48+ - name : Upload archive
49+ uses : actions/upload-artifact@v4
50+ with :
51+ name : artifacts-${{ matrix.target }}
52+ path : dist
5153
5254 combine-artifacts :
5355 name : Combine artifacts
7981 with :
8082 name : package-esp32-index-json
8183 path : dist/package_esp32_index.template.json
82-
0 commit comments