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 0cf44f0 commit c84d671Copy full SHA for c84d671
.github/scripts/sketch_utils.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-LIBS_DIR="tools/esp32-arduino-libs"
+LIBS_DIR="$GITHUB_WORKSPACE/tools/esp32-arduino-libs"
4
5
function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [extra-options]
6
while [ ! -z "$1" ]; do
.github/workflows/push.yml
@@ -194,9 +194,8 @@ jobs:
194
195
- name: List files in the directory
196
run: |
197
- ls tools
198
- ls tools/esp32-arduino-libs
199
- ls tools/esp32-arduino-libs/esp32
+ bash -c "ls tools"
+ bash -c "ls tools/esp32-arduino-libs"
200
201
- name: Build Sketches
202
run: bash ./.github/scripts/on-push.sh
0 commit comments