Implement Connection State Cycle #143
This file contains hidden or 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
| name: Compile ESP-IDF Sketches for v4.4 | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/espidf-compile-v*.yml" | |
| - "examples/**" | |
| - "src/**" | |
| push: | |
| paths: | |
| - ".github/workflows/espidf-compile-v*.yml" | |
| - "examples/**" | |
| - "src/**" | |
| workflow_dispatch: | |
| repository_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| 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 process RPC example on v4.4 | |
| uses: espressif/esp-idf-ci-action@v1 | |
| with: | |
| esp_idf_version: v4.4 | |
| target: esp32 | |
| path: 'examples/0016-espressif_esp32_rpc' | |
| - name: Build process Shared Attribute example on v4.4 | |
| uses: espressif/esp-idf-ci-action@v1 | |
| with: | |
| esp_idf_version: v4.4 | |
| target: esp32 | |
| path: 'examples/0017-espressif_esp32_process_shared_attribute_update' | |
| - name: Build process Provision example on v4.4 | |
| uses: espressif/esp-idf-ci-action@v1 | |
| with: | |
| esp_idf_version: v4.4 | |
| target: esp32 | |
| path: 'examples/0018-espressif_esp32_provision_device' | |
| - name: Build process connection state example on v4.4 | |
| uses: espressif/esp-idf-ci-action@v1 | |
| with: | |
| esp_idf_version: v4.4 | |
| target: esp32 | |
| path: 'examples/0020-espressif_esp32_connection_state' |