Files
my-docs/Code-Management/Gitlab/Gitlab-CI/gitlab-ci.yaml
2025-10-04 10:15:42 +03:30

25 lines
336 B
YAML

job1:
stage: hello_stage
script: echo "Hi :)"
job2:
stage: hello_stage
script: echo "Hello :)"
job3:
stage: hello_stage
script: echo "How Are You :)"
needs:
- job2
Build_job1:
stage: build_stage
script: echo "Building Code"
needs:
- job3
tags:
- build_runner
stages:
- hello_stage
- build_stage