diff options
-rw-r--r-- | .gitlab-ci.yml | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df624bd7..08438466 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,7 @@ stages: - test - deploy -- fail -- ok +- documentation image: debian:stable before_script: @@ -24,11 +23,6 @@ imagemagiccheck: script: - ./.tools/imagemagiccheck.sh -licensecheck: - stage: test - script: - - ./.tools/licensecheck.sh - manaplus: stage: test image: debian:unstable @@ -61,22 +55,8 @@ pages: only: - master -ok_job: - stage: ok +licensecheck: + stage: documentation script: - - pwd - - echo $CI_BUILD_REF_NAME - when: on_success - dependencies: [] - variables: - GIT_STRATEGY: none + - ./.tools/licensecheck.sh -fail_job: - stage: fail - script: - - pwd - - echo $CI_BUILD_REF_NAME - when: on_failure - dependencies: [] - variables: - GIT_STRATEGY: none |