Skip to content

Commit 27b8082

Browse files
committed
evaluate result code from make
1 parent 962c4b2 commit 27b8082

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/regression.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,17 @@ jobs:
3939
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
4040
run: |
4141
pushd tests
42-
fail=0
42+
fail=0
4343
for dir in `find . -mindepth 1 -maxdepth 1 -type d`; do
4444
pushd $dir
45-
if ! make; then
45+
if ! make; then
4646
fail=1
47-
popd
48-
break
49-
fi
47+
popd
48+
break
49+
fi
5050
popd
5151
done
52-
if [ ! $fail -eq 0 ]; then false; else true; fi
52+
if [ ! $fail -eq 0 ]; then false; else true; fi
5353
5454
- name: Upload artifacts
5555
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)