We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ce6ab commit da02b05Copy full SHA for da02b05
.github/workflows/compile.yml
@@ -35,11 +35,15 @@ jobs:
35
run: |
36
arduino-cli core install Inkplate_Motion:stm32
37
38
- # Compile all examples and fail fast on error
+ # Compile all examples and include the current repository as a library
39
- name: Compile examples
40
41
set -e # Exit immediately if a command exits with a non-zero status
42
for sketch in $(find examples -name '*.ino'); do
43
echo "Compiling $sketch"
44
- arduino-cli compile --fqbn Inkplate_Motion:stm32:Inkplate6Motion "$sketch" --warnings=all --verbose
+ arduino-cli compile \
45
+ --fqbn Inkplate_Motion:stm32:Inkplate6Motion \
46
+ --libraries . \ # Include the current repository as a library
47
+ "$sketch" \
48
+ --warnings=all --verbose
49
done
0 commit comments