We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a8ead commit 962c4b2Copy full SHA for 962c4b2
1 file changed
.github/workflows/regression.yaml
@@ -39,10 +39,17 @@ jobs:
39
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
40
run: |
41
pushd tests
42
+ fail=0
43
for dir in `find . -mindepth 1 -maxdepth 1 -type d`; do
- pushd $dir && make && popd
44
+ pushd $dir
45
+ if ! make; then
46
+ fail=1
47
+ popd
48
+ break
49
+ fi
50
51
done
- popd
52
+ if [ ! $fail -eq 0 ]; then false; else true; fi
53
54
- name: Upload artifacts
55
uses: actions/upload-artifact@v4
0 commit comments