From 5e1d9b8c221c2bb2cd7685174c78dc4096b2ac16 Mon Sep 17 00:00:00 2001 From: Hendrik Langer Date: Thu, 18 Jul 2019 15:04:01 +0200 Subject: [PATCH] test --- .gitlab-ci.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c2a962..ff45ace 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ stages: - - codequality + - test +# - codequality - build - deploy @@ -37,6 +38,21 @@ codequality: reports: codequality: gl-code-quality-report.json +test: + stage: test + image: debian:testing + allow_failure: true + before_script: + - apt -q update + - apt install -qy build-essential + - apt install -qy cppcheck + script: +# - cppcheck --enable=all --check-config src + - cppcheck src +# artifacts: +# reports: +# - + deploy: stage: deploy image: alpine:latest