67 lines
1.6 KiB
YAML
67 lines
1.6 KiB
YAML
.tests-metadata-state:
|
|
extends:
|
|
- .default-only
|
|
- .only:changes-code-backstage
|
|
variables:
|
|
TESTS_METADATA_S3_BUCKET: "gitlab-ce-cache"
|
|
before_script:
|
|
- source scripts/utils.sh
|
|
cache:
|
|
key: tests_metadata
|
|
paths:
|
|
- knapsack/
|
|
- rspec_flaky/
|
|
artifacts:
|
|
expire_in: 31d
|
|
paths:
|
|
- knapsack/
|
|
- rspec_flaky/
|
|
- rspec_profiling/
|
|
|
|
retrieve-tests-metadata:
|
|
extends: .tests-metadata-state
|
|
stage: prepare
|
|
cache:
|
|
policy: pull
|
|
script:
|
|
- source scripts/rspec_helpers.sh
|
|
- retrieve_tests_metadata
|
|
|
|
update-tests-metadata:
|
|
extends: .tests-metadata-state
|
|
stage: post-test
|
|
cache:
|
|
policy: push
|
|
script:
|
|
- retry gem install fog-aws mime-types activesupport rspec_profiling postgres-copy --no-document
|
|
- source scripts/rspec_helpers.sh
|
|
- update_tests_metadata
|
|
only:
|
|
refs:
|
|
- schedules
|
|
variables:
|
|
# Only update the Knapsack metadata on GitLab.com/gitlab-org/gitlab
|
|
- $CI_SERVER_HOST == "gitlab.com" && $CI_PROJECT_PATH == "gitlab-org/gitlab"
|
|
|
|
flaky-examples-check:
|
|
extends:
|
|
- .default-tags
|
|
- .default-retry
|
|
- .default-only
|
|
- .only:changes-code-backstage
|
|
image: ruby:2.6-alpine
|
|
stage: post-test
|
|
variables:
|
|
NEW_FLAKY_SPECS_REPORT: rspec_flaky/report-new.json
|
|
allow_failure: true
|
|
only:
|
|
refs:
|
|
- merge_requests
|
|
artifacts:
|
|
expire_in: 30d
|
|
paths:
|
|
- rspec_flaky/
|
|
script:
|
|
- '[[ -f $NEW_FLAKY_SPECS_REPORT ]] || echo "{}" > ${NEW_FLAKY_SPECS_REPORT}'
|
|
- scripts/merge-reports ${NEW_FLAKY_SPECS_REPORT} rspec_flaky/new_*_*.json
|
|
- scripts/detect-new-flaky-examples $NEW_FLAKY_SPECS_REPORT
|