chore(CI): DIAGNOSTIC=1 for more error message

This commit is contained in:
zhongwencool 2021-08-19 23:15:27 +08:00
parent 53e386ad4e
commit 11e87ab9a3
1 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ jobs:
- name: run cover
run: |
printenv > .env
docker exec -i ${{ matrix.otp_release }} bash -c "make cover"
docker exec --env-file .env -i ${{ matrix.otp_release }} bash -c "make coveralls"
docker exec -i ${{ matrix.otp_release }} bash -c "DIAGNOSTIC=1 make cover"
docker exec --env-file .env -i ${{ matrix.otp_release }} bash -c "DIAGNOSTIC=1 make coveralls"
- name: cat rebar.crashdump
if: failure()
run: if [ -f 'rebar3.crashdump' ];then cat 'rebar3.crashdump'; fi