summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e84f05690f909feba5120356e31e8ec06d483cc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
stages:
  - build
  - success
  - failure

job1:
  stage: build
  image: ubuntu:cosmic
  script:
    - ./ci/install.sh
    - ./build.sh

success:
  stage: success
  script:
  - echo "do nothing"
  image: debian:unstable
  when: on_success

failure:
  stage: failure
  script:
  - echo "do nothing"
  image: debian:unstable
  when: on_failure