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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/ci/notify.gitlab-ci.yml')
-rw-r--r--.gitlab/ci/notify.gitlab-ci.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/.gitlab/ci/notify.gitlab-ci.yml b/.gitlab/ci/notify.gitlab-ci.yml
index 1afc4eb8c97..b8f51a2540d 100644
--- a/.gitlab/ci/notify.gitlab-ci.yml
+++ b/.gitlab/ci/notify.gitlab-ci.yml
@@ -3,31 +3,6 @@
dependencies: []
cache: {}
-create-issues-for-failing-tests:
- extends:
- - .notify-defaults
- - .notify:rules:create-issues-for-failing-tests
- image: ${GITLAB_DEPENDENCY_PROXY_ADDRESS}ruby:${RUBY_VERSION}
- variables:
- FAILED_TESTS_DIR: "${CI_PROJECT_DIR}/tmp/failed_tests"
- FAILING_ISSUES_PROJECT: "gitlab-org/quality/engineering-productivity/flaky-tests-playground"
- FAILING_ISSUE_JSON_DIR: "${CI_PROJECT_DIR}/tmp/issues"
- before_script:
- - source ./scripts/utils.sh
- - source ./scripts/rspec_helpers.sh
- - install_gitlab_gem
- script:
- - mkdir -p "${FAILING_ISSUE_JSON_DIR}"
- - retrieve_failed_tests "${FAILED_TESTS_DIR}" "json" "latest"
- - scripts/pipeline/create_test_failure_issues.rb --project "${FAILING_ISSUES_PROJECT}" --tests-report-file "${FAILED_TESTS_DIR}/rspec_failed_tests.json" --issues-json-folder "${FAILING_ISSUE_JSON_DIR}" --api-token "${FAILING_ISSUES_PROJECT_TOKEN}"
- - scripts/pipeline/create_test_failure_issues.rb --project "${FAILING_ISSUES_PROJECT}" --tests-report-file "${FAILED_TESTS_DIR}/rspec_ee_failed_tests.json" --issues-json-folder "${FAILING_ISSUE_JSON_DIR}" --api-token "${FAILING_ISSUES_PROJECT_TOKEN}"
- artifacts:
- paths:
- - ${FAILED_TESTS_DIR}/
- - ${FAILING_ISSUE_JSON_DIR}/
- when: always
- expire_in: 2 days
-
notify-package-and-test-failure:
extends:
- .notify-defaults