-
Notifications
You must be signed in to change notification settings - Fork 32
40 lines (33 loc) · 904 Bytes
/
esp-idf.yml
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
name: ESP-IDF v4.4
on:
push:
branches: []
pull_request:
branches: []
schedule:
- cron: "0 1 * * 6" # Every Saturday at 1AM
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
idf_ver: ["v4.4.7"]
idf_target: ["esp32"]
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
path: ${{ github.workspace }}/app
- name: Compile
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: ${{ matrix.idf_ver }}
target: ${{ matrix.idf_target }}
path: app/examples/esp-idf
command: apt-get update && apt-get install -y python3-venv && idf.py build