possible fix for espidf build #52
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: Build and Test | |
on: [push] | |
jobs: | |
framework-arduino: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: esphome/[email protected] | |
id: esphome-build | |
with: | |
yaml_file: .github/conf_arduino.yml | |
framework-espidf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: esphome/[email protected] | |
id: esphome-build | |
with: | |
yaml_file: .github/conf_esp_idf.yml | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install cpp | |
run: sudo apt-get install -y build-essential | |
- name: chmod | |
run: sudo chmod +x test/*.sh | |
- name: runtest | |
run: sudo test/test.sh | |