Skip to content
Snippets Groups Projects
Commit c6fb54a7 authored by chaithra's avatar chaithra
Browse files

Delete .gitlab-ci.yml

parent d3ebdee3
Branches master
No related tags found
No related merge requests found
#stages:
# - build
# - test
# - deploy
#building:
# tags:
# - datamod-cicd
#stage: build
#script:
# - whoami
# - pwd
#only:
# - master
#Production:
#tags:
# - datamod-cicd
#stage: deploy
#script:
# - whoami
#when: manual
#only:
#- master
build-job:
tags:
- datamod-cicd
stage: build
script:
- echo "Hello, $GITLAB_USER_LOGIN!"
test-job1:
tags:
- datamod-cicd
stage: test
script:
- echo "This job tests something"
test-job2:
tags:
- datamod-cicd
stage: test
script:
- echo "This job tests something, but takes more time than test-job1."
- echo "After the echo commands complete, it runs the sleep command for 20 seconds"
- echo "which simulates a test that runs 20 seconds longer than test-job1"
- sleep 20
deploy-prod:
tags:
- datamod-cicd
stage: deploy
script:
- echo "This job deploys something from the $CI_COMMIT_BRANCH branch."
environment: production
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment