diff options
author | Saulc <lucas@debian> | 2018-01-13 19:41:26 +0100 |
---|---|---|
committer | Saulc <lucas@debian> | 2018-01-13 19:41:26 +0100 |
commit | 4c4f4be30bae96e6cd943de326b1a4b1b841dcd4 (patch) | |
tree | a94e0a063e5df2a9f7f84f720982a3bca0c0cf6d /.gitlab-ci.yml | |
download | clientdata-4c4f4be30bae96e6cd943de326b1a4b1b841dcd4.tar.gz clientdata-4c4f4be30bae96e6cd943de326b1a4b1b841dcd4.tar.bz2 clientdata-4c4f4be30bae96e6cd943de326b1a4b1b841dcd4.tar.xz clientdata-4c4f4be30bae96e6cd943de326b1a4b1b841dcd4.zip |
Initial commit
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..575df15b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,87 @@ +stages: +- test +- deploy +- fail +- ok + +image: debian:stable +before_script: + - uname -a + +testxml: + stage: test + script: + - ./.tools/testxml.sh + - pwd + +contributors: + stage: test + script: + - ./.tools/contributors.sh + - pwd + +pngcheck: + stage: test + script: + - ./.tools/pngcheck.sh + +imagemagiccheck: + stage: test + script: + - ./.tools/imagemagiccheck.sh + +licensecheck: + stage: test + script: + - ./.tools/licensecheck.sh + +manaplus: + stage: test + script: + - ./.tools/manaplus.sh + artifacts: + paths: + - shared + when: always + expire_in: 3 week + +newlines: + stage: test + script: + - ./.tools/newlines.sh + artifacts: + paths: + - shared + when: always + expire_in: 3 week + +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 + dependencies: [] + variables: + GIT_STRATEGY: none + +fail_job: + stage: fail + script: + - pwd + - echo $CI_BUILD_REF_NAME + when: on_failure + dependencies: [] + variables: + GIT_STRATEGY: none |