Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-10-18 17:20:24 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-10-18 17:20:24 +0300
commit60d25109ce92857f3856814caf3c3b7d103ad972 (patch)
tree099f820f26cc5a53f1361b5c993224dc2f0848f0 /.gitlab-ci.yml
parent60a8193d847e0a448f162079048a3e0332a801cb (diff)
Disable performance job
We don't really use it and it's another job to run adding to the pipeline time.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml51
1 files changed, 26 insertions, 25 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c7f7e622..18fc7d4b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -228,31 +228,32 @@ pages:
# Performance testing #
###############################################
-performance:
- stage: post-deploy
- image: docker:git
- services:
- - docker:dind
- before_script: []
- cache: {}
- script:
- - export CI_ENVIRONMENT_URL=$(cat environment_url.txt)
- - mkdir gitlab-exporter
- - wget -O ./gitlab-exporter/index.js https://gitlab.com/gitlab-org/gl-performance/raw/master/index.js
- - mkdir sitespeed-results
- - docker run --shm-size=1g --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io:6.3.1 --plugins.add ./gitlab-exporter --outputFolder sitespeed-results "$CI_ENVIRONMENT_URL"
- - mv sitespeed-results/data/performance.json performance.json
- artifacts:
- paths:
- - performance.json
- - sitespeed-results/
- expire_in: 1w
- only:
- - branches
- except:
- - /^\d{1,2}\.\d{1,2}$/
- - pipelines
- <<: *retry
+# Disable as we don't really use it
+#performance:
+# stage: post-deploy
+# image: docker:git
+# services:
+# - docker:dind
+# before_script: []
+# cache: {}
+# script:
+# - export CI_ENVIRONMENT_URL=$(cat environment_url.txt)
+# - mkdir gitlab-exporter
+# - wget -O ./gitlab-exporter/index.js https://gitlab.com/gitlab-org/gl-performance/raw/master/index.js
+# - mkdir sitespeed-results
+# - docker run --shm-size=1g --rm -v "$(pwd)":/sitespeed.io sitespeedio/sitespeed.io:6.3.1 --plugins.add ./gitlab-exporter --outputFolder sitespeed-results "$CI_ENVIRONMENT_URL"
+# - mv sitespeed-results/data/performance.json performance.json
+# artifacts:
+# paths:
+# - performance.json
+# - sitespeed-results/
+# expire_in: 1w
+# only:
+# - branches
+# except:
+# - /^\d{1,2}\.\d{1,2}$/
+# - pipelines
+# <<: *retry
###############################################
# Docker images builds #