-
Notifications
You must be signed in to change notification settings - Fork 22
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
Showing
4 changed files
with
39 additions
and
23 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,9 @@ | ||
packages: | ||
common: !include shared.yaml | ||
|
||
esp32: | ||
board: "esp32dev" | ||
framework: | ||
type: arduino | ||
version: 2.0.16 | ||
platform_version: 6.7.0 |
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,7 @@ | ||
packages: | ||
common: !include shared.yaml | ||
|
||
esp32: | ||
board: "esp32dev" | ||
framework: | ||
type: esp-idf |
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
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 |
---|---|---|
@@ -1,19 +1,24 @@ | ||
--- | ||
name: Build Component | ||
name: Build Component | ||
|
||
on: | ||
push: | ||
pull_request: | ||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Compile Firmware | ||
uses: esphome/[email protected] | ||
with: | ||
yaml-file: .github/test-config.yaml | ||
- name: Compile Arduino Firmware | ||
uses: esphome/[email protected] | ||
with: | ||
yaml-file: .github/arduino-component.yaml | ||
|
||
|
||
- name: Compile IDF Firmware | ||
uses: esphome/[email protected] | ||
with: | ||
yaml-file: .github/idf-component.yaml |