Merge pull request #398 from philljj/fix_threading_errors #7
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
name: Espressif tests | |
on: | |
push: | |
# branches: [ 'master', 'main', 'release/**' ] | |
branches: [ '*' ] | |
pull_request: | |
branches: [ '*' ] | |
jobs: | |
espressif_latest: | |
name: latest Docker container | |
runs-on: ubuntu-latest | |
# This should be a safe limit for the tests to run. | |
timeout-minutes: 12 | |
container: | |
image: espressif/idf:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Initialize Espressif IDE and build examples | |
# WSL does not properly honor `chmod +x` so we'll do it manually here: | |
run: . /opt/esp/idf/export.sh; chmod +x IDE/Espressif/ESP-IDF/compileAllExamples.sh; IDE/Espressif/ESP-IDF/compileAllExamples.sh | |