Check results when test with any OTP is not skipped

This commit is contained in:
Badlop 2022-03-25 16:21:40 +01:00
parent f19219f5a0
commit 4c51f6e1fe
1 changed files with 6 additions and 5 deletions

View File

@ -170,11 +170,12 @@ jobs:
cat $RE/var/log/ejabberd/ejabberd.log
grep -q "is stopped in" $RE/var/log/ejabberd/ejabberd.log
- name: Run tests
if: matrix.otp != 24
- name: Run tests (OTP 19.3)
if: matrix.otp == '19.3'
id: ct2
run: make test
- name: Run tests (OTP 24)
if: matrix.otp == 24
- name: Run tests
if: matrix.otp != '19.3'
id: ct
run: |
(cd priv && ln -sf ../sql)
@ -187,7 +188,7 @@ jobs:
rebar3 cover
- name: Check results
if: always() && steps.ct.outcome != 'skipped'
if: always() && (steps.ct.outcome != 'skipped' || steps.ct2.outcome != 'skipped')
id: ctresults
run: |
[[ -d _build ]] && ln -s _build/test/logs/last/ logs || true