diff options
author | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-05-20 14:41:01 +0200 |
---|---|---|
committer | Z.J. van de Weg <git@zjvandeweg.nl> | 2017-05-20 14:41:01 +0200 |
commit | 6f742a8437c689f39f30b2780029bd245a77809e (patch) | |
tree | 7aa1783eb55c6e9d6d829d7fde21fa1e8e91d487 /.gitlab-ci.yml | |
parent | f5f99c9037e52392ca388b6e839d93df88421c31 (diff) | |
download | gitlab-ce-6f742a8437c689f39f30b2780029bd245a77809e.tar.gz |
Remove trigger docs jobzj-docs-on-pipeline-schedules
No need to trigger pipelines no more, as now these will be triggered
using pipeline schedules.
See https://gitlab.com/gitlab-com/gitlab-docs/pipeline_schedules
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 45f1638f871..d8df6f34628 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -485,25 +485,6 @@ lint:javascript:report: paths: - eslint-report.html -# Trigger docs build -# https://gitlab.com/gitlab-com/doc-gitlab-com/blob/master/README.md#deployment-process -trigger_docs: - stage: post-test - image: "alpine" - <<: *dedicated-runner - before_script: - - apk update && apk add curl - variables: - GIT_STRATEGY: "none" - cache: {} - artifacts: {} - script: - - "HTTP_STATUS=$(curl -X POST -F token=${DOCS_TRIGGER_TOKEN} -F ref=master -F variables[PROJECT]=${CI_PROJECT_NAME} --silent --output curl.log --write-out '%{http_code}' https://gitlab.com/api/v3/projects/1794617/trigger/builds)" - - if [ "${HTTP_STATUS}" -ne "201" ]; then echo "Error ${HTTP_STATUS}"; cat curl.log; echo; exit 1; fi - only: - - master@gitlab-org/gitlab-ce - - master@gitlab-org/gitlab-ee - pages: before_script: [] stage: pages |