.gitlab-ci.yml 305 Bytes
Newer Older
Sintal's avatar
Sintal committed
1
2
image: ubuntu

Hotwani's avatar
Hotwani committed
3
4
5
6
7
8
9
10
build-job:
  stage: build
  script:
    - echo "Hello, $GITLAB_USER_LOGIN!"

test-job1:
  stage: test
  script:
Sintal's avatar
Sintal committed
11
    - echo "this job tests fork1"
Hotwani's avatar
Hotwani committed
12
13
14
15

test-job2:
  stage: test
  script:
Sintal's avatar
Sintal committed
16
    - echo "this job tests fork2"
Hotwani's avatar
Hotwani committed
17
18
19
20

deploy-prod:
  stage: deploy
  script:
Sintal's avatar
Sintal committed
21
    - echo "this job tests fork3"