We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1200217 commit 97b2d4fCopy full SHA for 97b2d4f
.github/workflows/sycl-linux-benchmark.yml
@@ -242,7 +242,6 @@ jobs:
242
ls
243
export CMPLR_ROOT=$PWD/toolchain
244
./devops/scripts/benchmarking/benchmark.sh ${{ inputs.cache_results == true && '-s' }}
245
- echo $?
246
- name: Push compute-benchmarks
247
if: inputs.cache_results == true && success()
248
env:
devops/scripts/benchmarking/benchmark.sh
@@ -147,7 +147,9 @@ process_results() {
147
cat "$BENCHMARK_ERROR_LOG"
148
echo ""
149
fi
150
- [ ! -s "$BENCHMARKING_SLOW_LOG" ] && [ ! -s "$BENCHMARK_ERROR_LOG" ]
+ if [ -s "$BENCHMARKING_SLOW_LOG" ] || [ -s "$BENCHMARK_ERROR_LOG" ]; then
151
+ exit 1
152
+ fi
153
}
154
155
cleanup() {
0 commit comments