Skip to content

Commit

Permalink
Disable BWC tests in encryption at rest CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-vieira committed Oct 12, 2023
1 parent f62157b commit 3aa3d25
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .buildkite/pipelines/periodic-platform-support.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .ci/jobs.t/elastic+elasticsearch+periodic+ear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,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
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,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
}
Expand Down Expand Up @@ -256,7 +256,7 @@ allprojects {
tasks.register('checkPart1') { dependsOn 'check' }
}

tasks.register('platformSupportTests') { dependsOn 'check'}
tasks.register('functionalTests') { dependsOn 'check'}
}

/*
Expand Down

0 comments on commit 3aa3d25

Please sign in to comment.