File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
- group : platform-support-unix
3
3
steps :
4
4
- label : " {{matrix.image}} / platform-support-unix"
5
- command : .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true check
5
+ command : .ci/scripts/run-gradle.sh -Dbwc.checkout.align=true platformSupportTests
6
6
timeout_in_minutes : 420
7
7
matrix :
8
8
setup :
46
46
- checkPart1
47
47
- checkPart2
48
48
- checkPart3
49
- - bwcTestSnapshots
50
49
- checkRestCompat
51
50
agents :
52
51
provider : gcp
70
69
- checkPart1
71
70
- checkPart2
72
71
- checkPart3
73
- - bwcTestSnapshots
74
72
- checkRestCompat
75
73
agents :
76
74
provider : aws
Original file line number Diff line number Diff line change @@ -186,8 +186,8 @@ if (bwc_tests_enabled == false) {
186
186
println " See ${ bwc_tests_disabled_issue} "
187
187
println " ==========================================================="
188
188
}
189
- if (project. gradle. startParameter. taskNames. find { it. startsWith(" checkPart" ) } != null ) {
190
- // Disable BWC tests for checkPart* tasks as it's expected that this will run un it's own check
189
+ if (project. gradle. startParameter. taskNames. any { it. startsWith(" checkPart" ) || it == ' platformSupportTests ' } ) {
190
+ // Disable BWC tests for checkPart* tasks and platform support tests as it's expected that this will run on it's own check
191
191
bwc_tests_enabled = false
192
192
}
193
193
@@ -254,6 +254,8 @@ allprojects {
254
254
} else {
255
255
tasks. register(' checkPart1' ) { dependsOn ' check' }
256
256
}
257
+
258
+ tasks. register(' platformSupportTests' ) { dependsOn ' check' }
257
259
}
258
260
259
261
/*
You can’t perform that action at this time.
0 commit comments