Commit 77ab86d8 authored by yuga's avatar yuga
Browse files

Add new file

parent 457b09a7
No related merge requests found
Pipeline #4 failed with stages
Showing with 34 additions and 0 deletions
+34 -0
image: docker:latest
services:
- docker:dind
stages:
- build
- test
- release
- preprod
- integration
- prod
build:
stage: build
script:
- echo "This is a build step"
test:
stage: test
script:
- echo "This is a test step"
integration:
stage: integration
script:
- echo "This is an integration step"
- exit 1
allow_failure: true # Even if the job fails, continue to the next stages
prod:
stage: prod
script:
- echo "This is a deploy step"
when: manual # Continuous Delivery
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment