ci: try to fix coveralls again

This commit is contained in:
Ivan Dyachkov 2024-05-07 22:46:04 +02:00
parent 6a3560868f
commit 214d3427c3
1 changed files with 2 additions and 5 deletions

View File

@ -146,7 +146,7 @@ jobs:
- name: send to coveralls - name: send to coveralls
if: github.repository == 'emqx/emqx' if: github.repository == 'emqx/emqx'
run: | run: |
stat -t -- './_build/test/cover/*.coverdata' >/dev/null 2>&1 || exit 0 ls _build/test/cover/*.coverdata || exit 0
./scripts/ct/run.sh --ci --app ${{ matrix.app }} --only-up ./scripts/ct/run.sh --ci --app ${{ matrix.app }} --only-up
docker exec \ docker exec \
-e IS_CI="$IS_CI" \ -e IS_CI="$IS_CI" \
@ -228,12 +228,9 @@ jobs:
if: github.repository == 'emqx/emqx' if: github.repository == 'emqx/emqx'
env: env:
PROFILE: ${{ matrix.profile }} PROFILE: ${{ matrix.profile }}
SUITEGROUP: ${{ matrix.suitegroup }}
ENABLE_COVER_COMPILE: 1
CT_COVER_EXPORT_PREFIX: ${{ matrix.profile }}-${{ matrix.otp }}-sg${{ matrix.suitegroup }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
stat -t -- './_build/test/cover/*.coverdata' >/dev/null 2>&1 || exit 0 ls _build/test/cover/*.coverdata || exit 0
make coveralls make coveralls
- name: get coveralls logs - name: get coveralls logs