-
Notifications
You must be signed in to change notification settings - Fork 101
44 lines (42 loc) · 1.13 KB
/
github-actions-test.yml
File metadata and controls
44 lines (42 loc) · 1.13 KB
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
name: GitHub Actions test
on: [push]
jobs:
build_v1_1:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
with:
submodules: 'recursive'
- name: build Jade 1.1
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.4
target: esp32
command: ./tools/switch_to.sh jade_v1_1 --dev --log && idf.py size all
build_v2:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
with:
submodules: 'recursive'
- name: build Jade Plus
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.4
target: esp32s3
command: ./tools/switch_to.sh jade_v2 --dev --log --jtag && idf.py size all
build_v2c:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
with:
submodules: 'recursive'
- name: build Jade Core
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.4
target: esp32s3
command: ./tools/switch_to.sh jade_v2c --dev --log --jtag && idf.py size all