-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.19 KB
/
ci.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
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: size without C++
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.4
command: idf.py -DIDF_TARGET=esp32s3 build size -l
target: esp32s3
path: "."
# - name: using <string>
# uses: espressif/esp-idf-ci-action@v1
# with:
# esp_idf_version: v5.4
# command: idf.py -DIDF_TARGET=esp32s3 -DTEST_STRING=1 fullclean build size -l
# target: esp32s3
# path: "."
# - name: using <vector>
# uses: espressif/esp-idf-ci-action@v1
# with:
# esp_idf_version: v5.4
# command: idf.py -DIDF_TARGET=esp32s3 -DTEST_VECTOR=1 fullclean build size -l
# target: esp32s3
# path: "."
# - name: using <iostream>
# uses: espressif/esp-idf-ci-action@v1
# with:
# esp_idf_version: v5.4
# command: idf.py -DIDF_TARGET=esp32s3 -DTEST_IOSTREAM=1 fullclean build size -l
# target: esp32s3
# path: "."