commit 07a7991cd25c38df4b7991934d5c517c23eb05dd parent 38e49fd66dea6a98434a41f1c1710caf47555af1 Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Sat, 11 May 2019 11:26:27 -0700 Add memory leak testing Diffstat:
M | .gitlab-ci.yml | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml @@ -2,9 +2,12 @@ build-alpine: stage: build image: alpine:edge before_script: - - apk --no-cache add build-base gnuplot bash zsh + - apk --no-cache add build-base gnuplot bash zsh valgrind script: - make plots + - valgrind --error-exitcode=1 --leak-check=full ./1d_fd_simple_shear -h + - valgrind --error-exitcode=1 --leak-check=full ./1d_fd_simple_shear + - valgrind --error-exitcode=1 --leak-check=full ./1d_fd_simple_shear -F artifacts: paths: - 1d_fd_simple_shear.png