Skip to content

Commit d652374

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 7054913 commit d652374

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,11 @@ fi
9696

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
99-
100-
if [ "x$JNI_FAIL" == "xtrue" ] ; then
99+
total : 57
100+
skiped: 6
101+
passed: 23
102+
Failed: 28
103+
if [ "x$CQA_FAIL" == "xtrue" ] ; then
101104
if grep -Eq -e '^Failed: [1-9]' test.${TIME}/tests.log ; then
102105
exit 1
103106
fi

0 commit comments

Comments
 (0)