Skip to content

Commit 0980e63

Browse files
committed
add some debug output
1 parent 995fd8a commit 0980e63

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/examples.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,18 @@ jobs:
119119
run: |
120120
cd examples/cmake-scenarios
121121
./build.sh
122+
123+
# For Windows
124+
export PATH=${PATH}:$(pwd)/scratch/nanoarrow_install/bin
125+
echo "Using PATH=${PATH}"
126+
122127
for dir in scratch/build*; do
123128
# Not sure why ./${dir}/minimal_cpp_app || ... does not work on Windows
124129
if [ -f ./${dir}/minimal_cpp_app ]; then
130+
echo "Trying ./${dir}/minimal_cpp_app"
125131
./${dir}/minimal_cpp_app
126132
else
133+
echo "Trying ./${dir}/Debug/minimal_cpp_app"
127134
./${dir}/Debug/minimal_cpp_app
128135
fi
129136
done

0 commit comments

Comments
 (0)