Skip to content

Commit bd5a3ed

Browse files
committed
build: update github build workflow for recent changes
1 parent 6ff10c6 commit bd5a3ed

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed
Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
11
name: GitHub Actions test
22
on: [push]
33
jobs:
4-
build:
5-
4+
build_v1_1:
65
runs-on: ubuntu-latest
7-
86
steps:
97
- name: Checkout repo
10-
uses: actions/checkout@v2
8+
uses: actions/checkout@v5
119
with:
1210
submodules: 'recursive'
13-
- name: esp-idf build
11+
- name: build Jade 1.1
1412
uses: espressif/esp-idf-ci-action@v1
1513
with:
1614
esp_idf_version: v5.4
1715
target: esp32
18-
command: idf.py -D SDKCONFIG_DEFAULTS="configs/sdkconfig_jade_v1_1.defaults" build all size-components size
16+
command: ./tools/switch_to.sh jade_v1_1 --dev --log && idf.py size all
17+
18+
build_v2:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout repo
22+
uses: actions/checkout@v5
23+
with:
24+
submodules: 'recursive'
25+
- name: build Jade Plus
26+
uses: espressif/esp-idf-ci-action@v1
27+
with:
28+
esp_idf_version: v5.4
29+
target: esp32s3
30+
command: ./tools/switch_to.sh jade_v2 --dev --log --jtag && idf.py size all

0 commit comments

Comments
 (0)