Disable Kotlin tests on s390x until gradle#27273 is fixed
This commit is contained in:
parent
af5096f89d
commit
a51a861d13
|
@ -41,7 +41,7 @@ stage('Configure') {
|
||||||
// new BuildEnvironment( dbName: 'sybase' ),
|
// new BuildEnvironment( dbName: 'sybase' ),
|
||||||
// Don't build with HANA by default, but only do it nightly until we receive a 3rd instance
|
// Don't build with HANA by default, but only do it nightly until we receive a 3rd instance
|
||||||
// new BuildEnvironment( dbName: 'hana_cloud', dbLockableResource: 'hana-cloud', dbLockResourceAsHost: true ),
|
// new BuildEnvironment( dbName: 'hana_cloud', dbLockableResource: 'hana-cloud', dbLockResourceAsHost: true ),
|
||||||
new BuildEnvironment( node: 's390x' ),
|
new BuildEnvironment( node: 's390x', additionalOptions: '-PexcludeTests=**/KotlinProjectTests*' ),
|
||||||
new BuildEnvironment( dbName: 'tidb', node: 'tidb',
|
new BuildEnvironment( dbName: 'tidb', node: 'tidb',
|
||||||
notificationRecipients: 'tidb_hibernate@pingcap.com' ),
|
notificationRecipients: 'tidb_hibernate@pingcap.com' ),
|
||||||
// We want to enable preview features when testing newer builds of OpenJDK:
|
// We want to enable preview features when testing newer builds of OpenJDK:
|
||||||
|
|
|
@ -79,6 +79,9 @@ pluginBundle {
|
||||||
|
|
||||||
test {
|
test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
|
if ( project.hasProperty( 'excludeTests' ) ) {
|
||||||
|
exclude project.property( 'excludeTests' )
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Publish to the Gradle Plugin Portal
|
// Publish to the Gradle Plugin Portal
|
||||||
|
|
Loading…
Reference in New Issue