From 34035e0a2fd71c2c4a6c818b4e986dd007d97702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Otto=20Kek=C3=A4l=C3=A4inen?= Date: Tue, 14 Apr 2020 13:42:07 +0300 Subject: [PATCH] Use almost all Gitlab-CI templates for *a lot* of automatic testing --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea26afd..58ca08c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,30 @@ --- +include: + - template: Dependency-Scanning.gitlab-ci.yml + - template: SAST.gitlab-ci.yml + - template: DAST.gitlab-ci.yml + - template: License-Scanning.gitlab-ci.yml + - template: License-Management.gitlab-ci.yml + - template: Code-Quality.gitlab-ci.yml + +# Excluded: +# - template: Container-Scanning.gitlab-ci.yml +# No containers in Gitlab registry. + stages: - test - build - deploy + - validate + +variables: + DAST_WEBSITE: https://fevermap.net + +dast: + stage: validate + +sast: + stage: validate # These tests must pass for CI to pass mandatory tests: -- GitLab