Skip to content
Snippets Groups Projects

Add basic CI/CD functionality

Merged Mick Veldhuis requested to merge add-cicd-pipeline into main
1 file
+ 4
6
Compare changes
  • Side-by-side
  • Inline
+ 4
6
@@ -6,7 +6,7 @@ workflow:
- when: always
stages:
- prepare
- build
- test
include:
@@ -14,11 +14,9 @@ include:
- template: Security/Dependency-Scanning.gitlab-ci.yml
- template: Security/Secret-Detection.gitlab-ci.yml
build_ci_runner_image:
stage: prepare
image: docker
tags:
- dind
build-image:
stage: build
image: docker:latest
before_script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
script:
Loading