From 8f4728078a327713969409ee26ba2f8c025fa497 Mon Sep 17 00:00:00 2001 From: Mark Vieira Date: Thu, 12 Oct 2023 16:19:53 -0700 Subject: [PATCH] Disable BWC tests in encryption at rest CI job (#100784) --- .buildkite/pipelines/periodic-platform-support.yml | 2 +- .ci/jobs.t/elastic+elasticsearch+periodic+ear.yml | 2 +- build.gradle | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/pipelines/periodic-platform-support.yml b/.buildkite/pipelines/periodic-platform-support.yml index e9fdee681a2a3..734728f4279d2 100644 --- a/.buildkite/pipelines/periodic-platform-support.yml +++ b/.buildkite/pipelines/periodic-platform-support.yml @@ -2,7 +2,7 @@ steps: - group: platform-support-unix steps: - label: "{{matrix.image}} / platform-support-unix" - command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true platformSupportTests + command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true functionalTests timeout_in_minutes: 420 matrix: setup: diff --git a/.ci/jobs.t/elastic+elasticsearch+periodic+ear.yml b/.ci/jobs.t/elastic+elasticsearch+periodic+ear.yml index 276d4e8a87e93..9606d8ee10a14 100644 --- a/.ci/jobs.t/elastic+elasticsearch+periodic+ear.yml +++ b/.ci/jobs.t/elastic+elasticsearch+periodic+ear.yml @@ -32,4 +32,4 @@ ln -s "$PWD" "$WORKSPACE" - shell: | #!/usr/local/bin/runbld --redirect-stderr - $WORKSPACE/.ci/scripts/run-gradle.sh -Dbwc.checkout.align=true check + $WORKSPACE/.ci/scripts/run-gradle.sh -Dbwc.checkout.align=true functionalTests diff --git a/build.gradle b/build.gradle index 3ba3be064e7d5..d01e36e2562d2 100644 --- a/build.gradle +++ b/build.gradle @@ -177,7 +177,7 @@ if (bwc_tests_enabled == false) { println "See ${bwc_tests_disabled_issue}" println "===========================================================" } -if (project.gradle.startParameter.taskNames.any { it.startsWith("checkPart") || it == 'platformSupportTests' }) { +if (project.gradle.startParameter.taskNames.any { it.startsWith("checkPart") || it == 'functionalTests' }) { // Disable BWC tests for checkPart* tasks and platform support tests as it's expected that this will run on it's own check bwc_tests_enabled = false } @@ -250,7 +250,7 @@ allprojects { project.tasks.named(taskname).configure { enabled = false } } - tasks.register('platformSupportTests') { dependsOn 'check'} + tasks.register('functionalTests') { dependsOn 'check'} } /*