-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
256e057
commit 8b695d4
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Compile ESP-IDF Sketches | ||
|
||
on: | ||
pull_request: | ||
push: | ||
workflow_dispatch: | ||
repository_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: 'recursive' | ||
- name: Build send data example on v4.4 | ||
uses: espressif/esp-idf-ci-action@v1 | ||
with: | ||
esp_idf_version: v4.4 | ||
target: esp32 | ||
path: 'examples/0014-espressif_esp32_send_data' | ||
- name: Build process OTA over MQTT example on v4.4 | ||
uses: espressif/esp-idf-ci-action@v1 | ||
with: | ||
esp_idf_version: v4.4 | ||
target: esp32 | ||
path: 'examples/0015-espressif_esp32_process_OTA_MQTT' | ||
- name: Build send data example on v5.1 | ||
uses: espressif/esp-idf-ci-action@v1 | ||
with: | ||
esp_idf_version: v5.1 | ||
target: esp32 | ||
path: 'examples/0014-espressif_esp32_send_data' | ||
- name: Build process OTA over MQTT example on v5.1 | ||
uses: espressif/esp-idf-ci-action@v1 | ||
with: | ||
esp_idf_version: v5.1 | ||
target: esp32 | ||
path: 'examples/0015-espressif_esp32_process_OTA_MQTT' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.