Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c84d671

Browse files
committedOct 2, 2024··
test
1 parent 0cf44f0 commit c84d671

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎.github/scripts/sketch_utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
LIBS_DIR="tools/esp32-arduino-libs"
3+
LIBS_DIR="$GITHUB_WORKSPACE/tools/esp32-arduino-libs"
44

55
function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [extra-options]
66
while [ ! -z "$1" ]; do

‎.github/workflows/push.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,8 @@ jobs:
194194

195195
- name: List files in the directory
196196
run: |
197-
ls tools
198-
ls tools/esp32-arduino-libs
199-
ls tools/esp32-arduino-libs/esp32
197+
bash -c "ls tools"
198+
bash -c "ls tools/esp32-arduino-libs"
200199
201200
- name: Build Sketches
202201
run: bash ./.github/scripts/on-push.sh

0 commit comments

Comments
 (0)
Please sign in to comment.