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

benchmark.gitlab-ci.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5949a9cd6a98e111b724782c087e83e133a6abe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
benchmark-markdown:
  extends:
    - .single-db-ci-connection
    - .rails-job-base
    - .use-pg14
    - .benchmark:rules:benchmark-markdown
  stage: benchmark
  needs:
    - setup-test-env
  script:
    - section_start "gitaly-test-spawn" "Spawning Gitaly"; scripts/gitaly-test-spawn; section_end "gitaly-test-spawn";  # Do not use 'bundle exec' here
    - bundle exec rake benchmark:banzai &> benchmark-markdown.txt
  artifacts:
    when: always
    paths:
      - benchmark-markdown.txt
  allow_failure: true