Skip to content

Commit 9d718d1

Browse files
committed
Running ffmatrix requires globstar to be enabled in bash.
Otherwise, not all tests will be run, like on windows.
1 parent 2f24776 commit 9d718d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-smokes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235
readarray -t my_array < <(echo '${{ inputs.buckets }}' | jq -rc '.[]')
236236
for file in "${my_array[@]}"; do
237237
echo ">>> ./run-tests.sh ${file}"
238-
./run-tests.sh $file
238+
shopt -s globstar && ./run-tests.sh $file
239239
status=$?
240240
[ $status -eq 0 ] && echo ">>> No error in this test file" || haserror=1
241241
done

0 commit comments

Comments
 (0)