From 2e48c3f173bae17f2fee1cc4bbc5f3adc54b6a9d Mon Sep 17 00:00:00 2001 From: Glenn R Date: Sat, 9 Jul 2022 15:29:18 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9be047..5e24579 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,11 +7,33 @@ # Note that environment variables can be set in several places # See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence stages: + - build - test + - publish + +build_job: + stage: build + image: crystallang/crystal:1.5 + script: + - echo "Not implemented yet" + artifacts: + paths: + - bin + cache: + paths: + - lib sast: stage: test +publish_job: + stage: publish + script: + - echo "Not implemented yet" + artifacts: + paths: + - bin + include: - template: Security/SAST.gitlab-ci.yml