Skip to content

Commit f7fda2b

Browse files
committed
added github actions inclusion
1 parent 1d71449 commit f7fda2b

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

Diff for: .github/workflows/compile-examples.yml

+31-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
# Install the ArduinoModbus library from the local path
3232
- source-path: ./
3333
- name: ArduinoRS485
34+
- name: Arduino_10BASE_T1S
3435
UNIVERSAL_SKETCH_PATHS: |
3536
- examples/RTU
3637
@@ -42,24 +43,38 @@ jobs:
4243
- fqbn: arduino:megaavr:uno2018:mode=off
4344
ethernet: true
4445
nina: true
46+
spe: false
4547
artifact-name-suffix: arduino-megaavr-uno2018
4648
- fqbn: arduino:samd:mkrwifi1010
4749
ethernet: true
4850
nina: true
51+
spe: false
4952
artifact-name-suffix: arduino-samd-mkrwifi1010
5053
- fqbn: arduino:mbed_nano:nano33ble
5154
ethernet: false
5255
nina: false
56+
spe: false
5357
artifact-name-suffix: arduino-mbed_nano-nano33ble
5458
- fqbn: arduino:mbed_portenta:envie_m7
5559
ethernet: false
5660
nina: false
61+
spe: false
5762
artifact-name-suffix: arduino-mbed_portenta-envie_m7
5863
- fqbn: arduino:mbed_opta:opta
5964
ethernet: true
6065
nina: false
66+
spe: false
6167
artifact-name-suffix: arduino-mbed_opta-opta
62-
68+
- fqbn: arduino:renesas_uno:unor4wifi
69+
ethernet: false
70+
nina: false
71+
spe: true
72+
artifact-name-suffix: arduino-renesas_uno-unor4wifi
73+
- fqbn: arduino:renesas_uno:minima
74+
ethernet: false
75+
nina: false
76+
spe: true
77+
artifact-name-suffix: arduino-renesas_uno-minima
6378
# Make board type-specific customizations to the matrix jobs
6479
include:
6580
- board:
@@ -90,6 +105,21 @@ jobs:
90105
nina: false
91106
nina-libraries: ""
92107
nina-sketch-paths: ""
108+
- board:
109+
# Boards with T1S shield
110+
spe: true
111+
# Install these libraries in addition to the ones defined by env.UNIVERSAL_LIBRARIES
112+
spe-libraries: ""
113+
# Compile these sketches in addition to the ones defined by env.UNIVERSAL_SKETCH_PATHS
114+
nina-sketch-paths: |
115+
- examples/T1S
116+
- board:
117+
# Boards with T1S shield
118+
spe: false
119+
# Install these libraries in addition to the ones defined by env.UNIVERSAL_LIBRARIES
120+
spe-libraries: ""
121+
# Compile these sketches in addition to the ones defined by env.UNIVERSAL_SKETCH_PATHS
122+
nina-sketch-paths: ""
93123

94124
steps:
95125
- name: Checkout

0 commit comments

Comments
 (0)