Disable Kotlin tests on s390x until gradle#27273 is fixed

This commit is contained in:
Christian Beikov 2024-04-19 13:34:46 +02:00 committed by Steve Ebersole
parent af5096f89d
commit a51a861d13
2 changed files with 4 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -41,7 +41,7 @@ stage('Configure') {
// new BuildEnvironment( dbName: 'sybase' ),
// 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( node: 's390x' ),
new BuildEnvironment( node: 's390x', additionalOptions: '-PexcludeTests=**/KotlinProjectTests*' ),
new BuildEnvironment( dbName: 'tidb', node: 'tidb',
notificationRecipients: 'tidb_hibernate@pingcap.com' ),
// We want to enable preview features when testing newer builds of OpenJDK:

View File

@ -79,6 +79,9 @@ pluginBundle {
test {
useJUnitPlatform()
if ( project.hasProperty( 'excludeTests' ) ) {
exclude project.property( 'excludeTests' )
}
}
// Publish to the Gradle Plugin Portal