You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/LibraryBuild.yml
+8-5Lines changed: 8 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
#
4
4
# Copyright (C) 2020 Armin Joachimsmeyer
5
5
# https://github.com/ArminJo/Github-Actions
6
+
# License: MIT
6
7
#
7
8
# Before being able to push to my .github\workflows directories,
8
9
# I had to create a new personal token with workflow enabled at https://github.com/settings/tokens
@@ -21,9 +22,9 @@ jobs:
21
22
# Space separated list without double quotes around the list.
22
23
# If you need a library with a space in its name, like Adafruit NeoPixel or Adafruit INA219, you must use double quotes
23
24
# around the name and have at least 2 entries, where the first must be without double quotes! You may use Servo as dummy entry.
24
-
REQUIRED_LIBRARIES:
25
+
REQUIRED_LIBRARIES:EspSoftwareSerial
25
26
26
-
#Output colors
27
+
#Global color definitions for output colors
27
28
RED: '\033[0;31m'
28
29
GREEN: '\033[0;32m'
29
30
YELLOW: '\033[1;33m'
@@ -67,18 +68,20 @@ jobs:
67
68
68
69
- arduino-boards-fqbn: arduino:sam:arduino_due_x
69
70
platform: arduino:sam
70
-
examples-exclude: Example5_LCDDemo Example6_ArduinoPlotterOutput Example7_Calibration # Space separated list of (unique substrings of) example names to exclude in build
71
+
examples-exclude: Example5_LCDDemo # No SoftwareSerial available. Space separated list of (unique substrings of) example names to exclude in build
examples-exclude: Example5_LCDDemo Example6_ArduinoPlotterOutput Example7_Calibration # Space separated list of (unique substrings of) example names to exclude in build
0 commit comments