blob: 8f836cfa8c8c31768efec679b94b8d830532ca84 (
plain) (
tree)
|
|
stages:
- test
- deploy
- fail
- ok
image: debian:stable
before_script:
- uname -a
testxml:
stage: test
script:
- apt-get update
- apt-get -y -qq install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python python-pyvorbis python-ogg python-pil
- cd ..
- rm -rf tools
- git clone https://gitlab.com/evol/evol-tools.git tools
- pwd
- ./tools/gitlab-ci/clientdata/testxml.sh
- pwd
- ls clientdata/shared
artifacts:
paths:
- shared
- public
pages:
stage: deploy
script:
- apt-get update
- apt-get -y -qq install git-core zip gcc zlib1g-dev ca-certificates libxml2-utils python
- cd ..
- rm -rf tools
- git clone https://gitlab.com/evol/evol-tools.git tools
- pwd
- ./tools/gitlab-ci/clientdata/deploy.sh
- pwd
- ls clientdata/shared
artifacts:
paths:
- shared
- public
only:
- master
ok_job:
stage: ok
script:
- pwd
- echo $CI_BUILD_REF_NAME
when: on_success
artifacts:
paths:
- shared
fail_job:
stage: fail
script:
- pwd
- echo $CI_BUILD_REF_NAME
when: on_failure
# artifacts:
# paths:
# - shared
|