feat: added 'report' step to cat the valgrind output file
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2020-06-26 18:54:50 +02:00
parent 4b03ea5bb1
commit 964722949e
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -14,12 +14,19 @@ steps:
- make
- name: test
pull: always
pull: if-not-exists
image: immawanderer/archlinux-cdev:latest
depends_on:
- build
commands:
- echo -e "9000\n$(shuf -i 1-900000 -n 1)\n1" | valgrind ./test > output
- name: report
pull: if-not-exists
image: immawanderer/archlinux-cdev:latest
depends_on:
- test
commands:
- cat ./output
---