Commit 36df4b17 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

Add new file

parent 2eac089c
Loading
Loading
Loading
Loading
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]