-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from hasenradball/update_compile_examples
Update compile examples
- Loading branch information
Showing
2 changed files
with
58 additions
and
9 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 |
---|---|---|
@@ -1,16 +1,33 @@ | ||
name: Compile Examples | ||
|
||
on: | ||
- push | ||
- pull_request | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
compile-examples: | ||
build-arduino: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.head_commit.message, '[arduino]') | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: arduino/compile-sketches@v1 | ||
with: | ||
libraries: | | ||
- source-path: ./ | ||
build-esp8266: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.head_commit.message, '[esp8266]') | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: arduino/compile-sketches@v1 | ||
with: | ||
libraries: | | ||
- source-path: ./ | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Arduino CLI | ||
uses: arduino/setup-arduino-cli@v1 | ||
|
||
- name: Install ESP8266 platform | ||
run: | | ||
arduino-cli core update-index | ||
arduino-cli core install esp8266:esp8266 | ||
- name: Compile code | ||
run: | | ||
arduino-cli compile --fqbn esp8266:esp8266:nodemcuv2 ./path-to-your-sketch |
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,32 @@ | ||
name: Compile Arduino Code | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build-arduino: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.head_commit.message, '[arduino]') | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: arduino/compile-sketches@v1 | ||
with: | ||
libraries: | | ||
- source-path: ./ | ||
build-esp8266: | ||
runs-on: ubuntu-latest | ||
if: contains(github.event.head_commit.message, '[esp8266]') | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Arduino CLI | ||
uses: arduino/setup-arduino-cli@v1 | ||
|
||
- name: Install ESP8266 platform | ||
run: | | ||
arduino-cli core update-index | ||
arduino-cli core install esp8266:esp8266 | ||
- name: Compile code | ||
run: | | ||
arduino-cli compile --fqbn esp8266:esp8266:d1_mini ./examples/Wemos_D1_mini_AM2302_Sensor_Array_Example/Wemos_D1_mini_AM2302_Sensor_Array_Example.ino |