-
-
Notifications
You must be signed in to change notification settings - Fork 64
66 lines (55 loc) · 1.86 KB
/
esp-idf-4.4.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
name: Build with ESP-IDF v4.4
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-v4.4
target: esp32
path: 'src'
command: 'idf.py -B build_plat_unijoysticle -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_unijoysticle" build'
- name: AirLift build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v4.4
target: esp32
path: 'src'
command: 'idf.py -B build_plat_airlift -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_airlift" build'
- name: NINA build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v4.4
target: esp32
path: 'src'
command: 'idf.py -B build_plat_nina -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_nina" build'
- name: MightyMiggy build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v4.4
target: esp32
path: 'src'
command: 'idf.py -B build_plat_mightymiggy -D SDKCONFIG_DEFAULTS="sdkconfig.defaults;sdkconfig.ci.plat_mightymiggy" build'
- name: Example build
uses: espressif/esp-idf-ci-action@main
with:
esp_idf_version: release-v4.4
target: esp32
path: 'examples/esp32'
command: 'idf.py build'