Skip to content

Commit addd3cc

Browse files
committed
intrducing CQA_FAIL to fail the suite once ready
total : 57 skiped: 6 passed: 23 Failed: 28 Keeping it always passing for now
1 parent 767a702 commit addd3cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
test $a -gt 3
4545
- name: Run
4646
run: |
47-
BLACKLIST="101.*" RFAT_RERUNS=2 bash ./run_containerqa.sh --container-image=${{matrix.jdkimage}}
47+
CQA_FAIL=false BLACKLIST="101.*" RFAT_RERUNS=2 bash ./run_containerqa.sh --container-image=${{matrix.jdkimage}}
4848
- name: Upload results
4949
if: ${{ always() }}
5050
uses: actions/upload-artifact@v4

run_containerqa.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ fi
9797
# results should be in log, if not, it means suite was not run
9898
grep -Eqi -e '^passed' -e '^(failed|error)' -e '^Ignored' test.${TIME}/tests.log || exit 2
9999

100-
if [ "x$JNI_FAIL" == "xtrue" ] ; then
100+
if [ "x$CQA_FAIL" == "xtrue" ] ; then
101101
if grep -Eq -e '^Failed: [1-9]' test.${TIME}/tests.log ; then
102102
exit 1
103103
fi

0 commit comments

Comments
 (0)