diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index dfb3080009b115d0a4ad23c812c076e99e8c7c11..0000000000000000000000000000000000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,30 +0,0 @@ -build-job: - stage: build - tags: - - rcds - script: - - echo "Hello, $GITLAB_USER_LOGIN" - -test-job1: - stage: test - tags: - - rcds - script: - - echo "This job tests something" - -test-job2: - stage: test - tags: - - rcds - script: - - echo "This job tests something, but takes more time than test-job1" - - echo "Sleeps for 20 seconds" - - sleep 20 - -deploy-prod: - stage: deploy - tags: - - rcds - script: - - echo "This job deploys something from $CI_COMMIT_BRANCH branch." - environment: production