adding some debug options.

This commit is contained in:
Aaron Son
2025-09-10 09:40:06 -07:00
parent 44efb94178
commit 4038e4f798

View File

@@ -54,6 +54,9 @@ jobs:
IFS=$'\n'
file_arr=($files)
IFS=$SAVEIFS
ls "$MSYS2_LOCATION"
"$MSYS2_LOCATION"/mingw64 -h
set -x
for (( i=0; i<${#file_arr[@]}; i++ ))
do
@@ -64,8 +67,7 @@ jobs:
fi
echo "Testing Package: ${file_arr[$i]}"
ls "$MSYS2_LOCATION"
"$MSYS2_LOCATION"/mingw64.exe -c 'go test -vet=off -timeout 45m '"${file_arr[$i]}"
"$MSYS2_LOCATION"/mingw64 -c 'go test -vet=off -timeout 45m '"${file_arr[$i]}"
succeeded=$(echo "$?")
if [ "$succeeded" -ne 0 ]; then
echo "Testing failed in package ${file_arr[$i]}"