Update .gitlab-ci.yml file
This commit is contained in:
parent
bc127a093b
commit
2e48c3f173
1 changed files with 22 additions and 0 deletions
|
@ -7,11 +7,33 @@
|
||||||
# Note that environment variables can be set in several places
|
# Note that environment variables can be set in several places
|
||||||
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
|
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
|
||||||
stages:
|
stages:
|
||||||
|
- build
|
||||||
- test
|
- test
|
||||||
|
- publish
|
||||||
|
|
||||||
|
build_job:
|
||||||
|
stage: build
|
||||||
|
image: crystallang/crystal:1.5
|
||||||
|
script:
|
||||||
|
- echo "Not implemented yet"
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- bin
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- lib
|
||||||
|
|
||||||
sast:
|
sast:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
||||||
|
publish_job:
|
||||||
|
stage: publish
|
||||||
|
script:
|
||||||
|
- echo "Not implemented yet"
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- bin
|
||||||
|
|
||||||
include:
|
include:
|
||||||
- template: Security/SAST.gitlab-ci.yml
|
- template: Security/SAST.gitlab-ci.yml
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue