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
|
||||
# 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue