blob: 3bf14c9458056328960c1e548d2ab4b20f38ea09 (
plain) (
tree)
|
|
stages:
- build
- success
- failure
job1:
stage: build
image: debian:unstable
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
|