blob: c496b205d75115d2bf2338b431cdedc1d2f628d8 (
plain) (
tree)
|
|
stages:
- test
- deploy
- fail
- ok
image: debian:stable
before_script:
- uname -a
testxml:
stage: test
script:
- ./.tools/testxml.sh
- pwd
pages:
stage: deploy
script:
- ./.tools/deploy.sh
- pwd
artifacts:
paths:
- public
only:
- master
ok_job:
stage: ok
script:
- pwd
- echo $CI_BUILD_REF_NAME
when: on_success
fail_job:
stage: fail
script:
- pwd
- echo $CI_BUILD_REF_NAME
when: on_failure
|