Loading .gitlab-ci.yml 0 → 100644 +22 −0 Original line number Diff line number Diff line stages: - build - test - compete compile: stage: build script: - echo "Compiling code for $GITLAB_USER_LOGIN" tags: [java] simple_tests: stage: test script: - echo "Running simple tests for $GITLAB_USER_LOGIN" tags: [java] competition: stage: compete script: - echo "Running competition for $GITLAB_USER_LOGIN" tags: [java] Loading
.gitlab-ci.yml 0 → 100644 +22 −0 Original line number Diff line number Diff line stages: - build - test - compete compile: stage: build script: - echo "Compiling code for $GITLAB_USER_LOGIN" tags: [java] simple_tests: stage: test script: - echo "Running simple tests for $GITLAB_USER_LOGIN" tags: [java] competition: stage: compete script: - echo "Running competition for $GITLAB_USER_LOGIN" tags: [java]