Disable BWC tests in encryption at rest CI job (#100784)

This commit is contained in:
Mark Vieira 2023-10-12 16:19:53 -07:00 committed by GitHub
parent 6029e557f8
commit 6d96998ef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -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:

View file

@ -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

View file

@ -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
}
@ -256,7 +256,7 @@ allprojects {
tasks.register('checkPart1') { dependsOn 'check' }
}
tasks.register('platformSupportTests') { dependsOn 'check'}
tasks.register('functionalTests') { dependsOn 'check'}
}
/*