We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 899f870 commit 93b976bCopy full SHA for 93b976b
.github/workflows/scripts/run_affected_benchmarks
@@ -143,7 +143,7 @@ main() {
143
144
# Run C benchmarks:
145
echo "Finding C benchmark files in ${directories}..."
146
- c_bench_files=$(find "${directories}" -maxdepth 4 -wholename '**/benchmark/c/benchmark*.c' -exec realpath {} \; | grep -v '/fixtures/' | sort -u | tr '\n' ' ') || true
+ c_bench_files=$(find "${directories}" -maxdepth 5 \( -wholename '**/benchmark/c/benchmark*.c' -or -wholename '**/benchmark/c/**/benchmark*.c' \) -exec realpath {} \; | grep -v '/fixtures/' | sort -u | tr '\n' ' ') || true
147
148
if [ -n "${c_bench_files}" ]; then
149
make benchmark-c-files FILES="${c_bench_files}"
0 commit comments