Skip to content

Commit

Permalink
Fix CI build (#33)
Browse files Browse the repository at this point in the history
Don't build M4 board at all - it doesn't have native networking,
test is not useful, yet it fails on ArduinoCI for some unknown
reason.

Don't build ESP32 w/WiFi101.h examples, they are not designed
to work. It was strange they actually worked before.
  • Loading branch information
sveljko authored and vveljko committed May 30, 2019
1 parent 0454dc6 commit e11690b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 32 deletions.
15 changes: 0 additions & 15 deletions .arduino-ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
platforms:
zero:
board: arduino:samd:arduino_zero_native
package: arduino:samd
gcc:
features:
defines:
- __SAMD21G18A__
- ARDUINO_SAMD_ZERO
- __COMPILING_AVR_LIBC__
- SPCR
- DORD
warnings:
flags:

unittest:
platforms:
# - uno
Expand Down
10 changes: 5 additions & 5 deletions examples/AdafruitFeatherM0WINC1500/.arduino-ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
compile:
# Choosing to run compilation tests on different Arduino platforms
platforms:
- uno
- due
# - zero
- uno
- due
# - zero
# - leonardo
- m4
# - m4
# - esp32
# - esp8266
- mega2560
- mega2560

# Declaring Dependent Arduino Libraries (to be installed via the Arduino Library Manager)
libraries:
Expand Down
4 changes: 2 additions & 2 deletions examples/PubNubDemo/.arduino-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compile:
- due
# - zero
- leonardo
- m4
- esp32
# - m4
# - esp32
# - esp8266
- mega2560
4 changes: 2 additions & 2 deletions examples/PubNubPublisher/.arduino-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compile:
- due
# - zero
- leonardo
- m4
- esp32
# - m4
# - esp32
# - esp8266
- mega2560
4 changes: 2 additions & 2 deletions examples/PubNubSubscriber/.arduino-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ compile:
- due
# - zero
- leonardo
- m4
- esp32
# - m4
# - esp32
# - esp8266
- mega2560
6 changes: 3 additions & 3 deletions examples/PubNubWifi101/.arduino-ci.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
compile:
# Choosing to run compilation tests on different Arduino platforms
platforms:
# Choosing to run compilation tests on different Arduino platforms
platforms:
- uno
- due
# - zero
# - leonardo
- m4
# - m4
# - esp32
# - esp8266
- mega2560
6 changes: 3 additions & 3 deletions examples/PubNubjsonWifi/.arduino-ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
compile:
# Choosing to run compilation tests on different Arduino platforms
# Choosing to run compilation tests on different Arduino platforms
platforms:
- uno
- due
# - zero
- leonardo
- m4
# - m4
- esp32
# - esp8266
- mega2560

# Declaring Dependent Arduino Libraries (to be installed via the Arduino Library Manager)
# Declaring Dependent Arduino Libraries (to be installed via the Arduino Library Manager)
libraries:
- "ArduinoJson"

0 comments on commit e11690b

Please sign in to comment.