Skip to content

Commit 33ccf95

Browse files
authored
Disable BWC tests in encryption at rest CI job (elastic#100784) (elastic#100785)
1 parent c1684d3 commit 33ccf95

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.buildkite/pipelines/periodic-platform-support.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ steps:
22
- group: platform-support-unix
33
steps:
44
- label: "{{matrix.image}} / platform-support-unix"
5-
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true platformSupportTests
5+
command: .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true functionalTests
66
timeout_in_minutes: 420
77
matrix:
88
setup:

.ci/jobs.t/elastic+elasticsearch+periodic+ear.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
ln -s "$PWD" "$WORKSPACE"
3434
- shell: |
3535
#!/usr/local/bin/runbld --redirect-stderr
36-
$WORKSPACE/.ci/scripts/run-gradle.sh -Dbwc.checkout.align=true check
36+
$WORKSPACE/.ci/scripts/run-gradle.sh -Dbwc.checkout.align=true functionalTests

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ if (bwc_tests_enabled == false) {
186186
println "See ${bwc_tests_disabled_issue}"
187187
println "==========================================================="
188188
}
189-
if (project.gradle.startParameter.taskNames.any { it.startsWith("checkPart") || it == 'platformSupportTests' }) {
189+
if (project.gradle.startParameter.taskNames.any { it.startsWith("checkPart") || it == 'functionalTests' }) {
190190
// Disable BWC tests for checkPart* tasks and platform support tests as it's expected that this will run on it's own check
191191
bwc_tests_enabled = false
192192
}
@@ -255,7 +255,7 @@ allprojects {
255255
tasks.register('checkPart1') { dependsOn 'check' }
256256
}
257257

258-
tasks.register('platformSupportTests') { dependsOn 'check'}
258+
tasks.register('functionalTests') { dependsOn 'check'}
259259
}
260260

261261
/*

0 commit comments

Comments
 (0)