Skip to content

Add Nano RP2040 Connect to sketch compilation CI workflow #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 35 additions & 1 deletion .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,19 @@ jobs:
- examples/05.Control
- examples/06.Sensors
- examples/07.Display
- examples/08.Strings
- examples/08.Strings/CharacterAnalysis
- examples/08.Strings/StringAdditionOperator
- examples/08.Strings/StringAppendOperator
- examples/08.Strings/StringCaseChanges
- examples/08.Strings/StringCharacters
- examples/08.Strings/StringConstructors
- examples/08.Strings/StringIndexOf
- examples/08.Strings/StringLength
- examples/08.Strings/StringLengthTrim
- examples/08.Strings/StringReplace
- examples/08.Strings/StringStartsWithEndsWith
- examples/08.Strings/StringSubstring
- examples/08.Strings/StringToInt
- examples/11.ArduinoISP

strategy:
Expand All @@ -94,44 +106,59 @@ jobs:
serial1: false
starter-kit: true
tone: true
a5: true
# Adding this in addition to the Uno because it has 1.5 kB less available flash
- fqbn: arduino:avr:nano
usb: false
serial1: false
starter-kit: false
tone: true
a5: true
- fqbn: arduino:avr:leonardo
usb: true
serial1: true
starter-kit: false
tone: true
a5: true
- fqbn: arduino:megaavr:uno2018:mode=off
usb: false
serial1: true
starter-kit: false
tone: true
a5: true
- fqbn: arduino:samd:mkrzero
usb: true
serial1: true
starter-kit: false
tone: true
a5: true
- fqbn: arduino:mbed_nano:nano33ble
usb: false
serial1: true
starter-kit: false
tone: true
a5: true
- fqbn: arduino:mbed_nano:nanorp2040connect
usb: false
serial1: true
starter-kit: false
tone: true
# WiFiNINA library is required to use pins A4-A7.
a5: false
- fqbn: arduino:mbed_portenta:envie_m7
usb: false
serial1: true
starter-kit: false
tone: true
a5: true
- fqbn: arduino:sam:arduino_due_x
usb: true
serial1: true
starter-kit: false
# Bug report: https://github.com/arduino/ArduinoCore-sam/issues/24
# Change the value to true once it is fixed.
tone: false
a5: true

# Make board type-specific customizations to the matrix jobs
include:
Expand Down Expand Up @@ -175,6 +202,13 @@ jobs:
- board:
tone: false
tone-sketch-paths: ""
- board:
a5: true
a5-sketch-paths: |
- examples/08.Strings/StringComparisonOperators
- board:
a5: false
tone-sketch-paths: ""

steps:
- name: Checkout
Expand Down