-
-
Notifications
You must be signed in to change notification settings - Fork 67
76 lines (62 loc) · 2.02 KB
/
esp-idf-latest.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: Build with ESP-IDF v5.3
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Patch BTStack
shell: bash
run: cd external/btstack && git apply ../patches/*.patch
- name: Install BTStack
shell: bash
run: cd external/btstack/port/esp32 && IDF_PATH=../../../../src/ ./integrate_btstack.py
- name: Unijoysticle build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.3
target: esp32
path: 'src'
command: 'idf.py -B build_plat_unijoysticle -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_unijoysticle" build'
- name: Example ESP32 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.3
target: esp32
path: 'examples/esp32'
command: "idf.py set-target esp32 && idf.py build"
- name: Example ESP32-S3 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.3
target: esp32-s3
path: 'examples/esp32'
command: "idf.py set-target esp32s3 && idf.py build"
- name: Example ESP32-C3 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.3
target: esp32-c3
path: 'examples/esp32'
command: "idf.py set-target esp32c3 && idf.py build"
- name: Example ESP32-C6 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.3
target: esp32-c6
path: 'examples/esp32'
command: "idf.py set-target esp32c6 && idf.py build"
- name: Example ESP32-H2 build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v5.3
target: esp32-h2
path: 'examples/esp32'
command: "idf.py set-target esp32h2 && idf.py build"