diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-09-04 08:44:32 +0000 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2019-09-04 08:44:32 +0000 |
commit | 875fb8b4af2a00d79216c7afd98c04e9306935e7 (patch) | |
tree | ffc2edad3c629c6c069ab4365ffe117637a7b469 | |
parent | 23650e6ee912ed20c8851082d1c30f538a9ab4bb (diff) | |
download | gitlab-ce-875fb8b4af2a00d79216c7afd98c04e9306935e7.tar.gz |
Remove jsdoc job
-rw-r--r-- | .gitlab/ci/frontend.gitlab-ci.yml | 19 | ||||
-rw-r--r-- | .gitlab/ci/pages.gitlab-ci.yml | 3 |
2 files changed, 1 insertions, 21 deletions
diff --git a/.gitlab/ci/frontend.gitlab-ci.yml b/.gitlab/ci/frontend.gitlab-ci.yml index 0d73092cfba..0720ea3e056 100644 --- a/.gitlab/ci/frontend.gitlab-ci.yml +++ b/.gitlab/ci/frontend.gitlab-ci.yml @@ -233,22 +233,3 @@ qa-frontend-node:latest: extends: .qa-frontend-node image: node:latest allow_failure: true - -jsdoc: - extends: - - .default-tags - - .default-retry - - .default-cache - - .except-docs - variables: - SETUP_DB: "false" - stage: post-test - dependencies: ["compile-assets", "compile-assets pull-cache"] - script: - - date - - yarn run jsdoc || true # ignore exit code - artifacts: - name: jsdoc - expire_in: 31d - paths: - - jsdoc/ diff --git a/.gitlab/ci/pages.gitlab-ci.yml b/.gitlab/ci/pages.gitlab-ci.yml index 5d13a72e224..2de09753cca 100644 --- a/.gitlab/ci/pages.gitlab-ci.yml +++ b/.gitlab/ci/pages.gitlab-ci.yml @@ -9,7 +9,7 @@ pages: - master@gitlab-org/gitlab-ce - master@gitlab-org/gitlab-ee stage: pages - dependencies: ["coverage", "karma", "gitlab:assets:compile", "jsdoc"] + dependencies: ["coverage", "karma", "gitlab:assets:compile"] script: - mv public/ .public/ - mkdir public/ @@ -18,7 +18,6 @@ pages: - mv webpack-report/ public/webpack-report/ || true - cp .public/assets/application-*.css public/application.css || true - cp .public/assets/application-*.css.gz public/application.css.gz || true - - mv jsdoc/ public/jsdoc/ || true artifacts: paths: - public |