mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
Disable BWC tests in encryption at rest CI job (#100784)
This commit is contained in:
parent
6029e557f8
commit
6d96998ef1
3 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@ steps:
|
||||||
- group: platform-support-unix
|
- group: platform-support-unix
|
||||||
steps:
|
steps:
|
||||||
- label: "{{matrix.image}} / platform-support-unix"
|
- 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
|
timeout_in_minutes: 420
|
||||||
matrix:
|
matrix:
|
||||||
setup:
|
setup:
|
||||||
|
|
|
@ -33,4 +33,4 @@
|
||||||
ln -s "$PWD" "$WORKSPACE"
|
ln -s "$PWD" "$WORKSPACE"
|
||||||
- shell: |
|
- shell: |
|
||||||
#!/usr/local/bin/runbld --redirect-stderr
|
#!/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
|
||||||
|
|
|
@ -186,7 +186,7 @@ if (bwc_tests_enabled == false) {
|
||||||
println "See ${bwc_tests_disabled_issue}"
|
println "See ${bwc_tests_disabled_issue}"
|
||||||
println "==========================================================="
|
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
|
// 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
|
bwc_tests_enabled = false
|
||||||
}
|
}
|
||||||
|
@ -256,7 +256,7 @@ allprojects {
|
||||||
tasks.register('checkPart1') { dependsOn 'check' }
|
tasks.register('checkPart1') { dependsOn 'check' }
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.register('platformSupportTests') { dependsOn 'check'}
|
tasks.register('functionalTests') { dependsOn 'check'}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue