corda/.ci/dev/open-j9/Jenkinsfile

100 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-10-21 10:58:54 +00:00
#!groovy
/**
* Jenkins pipeline to build Corda OS release branches and tags.
* PLEASE NOTE: we DO want to run a build for each commit!!!
*/
2022-02-14 21:08:57 +00:00
@Library('corda-shared-build-pipeline-steps')
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
2020-10-21 10:58:54 +00:00
/**
* Sense environment
*/
boolean isReleaseTag = (env.TAG_NAME =~ /^release-.*JDK11$/)
boolean isInternalRelease = (env.TAG_NAME =~ /^internal-release-.*JDK11$/)
boolean isReleaseCandidate = (env.TAG_NAME =~ /^release-.*(RC|HC).*JDK11$/)
/**
* Common Gradle arguments for all Gradle executions
*/
String COMMON_GRADLE_PARAMS = [
'--no-daemon',
'--stacktrace',
'--info',
'-Pcompilation.warningsAsErrors=false',
'-Ptests.failFast=true',
].join(' ')
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
pipeline {
agent { label 'open-j9 && os' }
2020-10-21 10:58:54 +00:00
/*
* List options in alphabetical order
*/
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
options {
2020-10-21 10:58:54 +00:00
buildDiscarder(logRotator(daysToKeepStr: '14', artifactDaysToKeepStr: '14'))
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
timeout(time: 10, unit: 'HOURS')
2020-10-21 10:58:54 +00:00
timestamps()
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
}
2020-10-21 10:58:54 +00:00
/*
* List environment variables in alphabetical order
*/
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
environment {
2020-10-21 10:58:54 +00:00
ARTIFACTORY_BUILD_NAME = "Corda OS OpenJ9 :: Publish :: Publish Release to Artifactory :: ${env.BRANCH_NAME}"
ARTIFACTORY_CREDENTIALS = credentials('artifactory-credentials')
CORDA_ARTIFACTORY_PASSWORD = "${env.ARTIFACTORY_CREDENTIALS_PSW}"
CORDA_ARTIFACTORY_USERNAME = "${env.ARTIFACTORY_CREDENTIALS_USR}"
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
}
stages {
stage('Unit Tests') {
steps {
authenticateGradleWrapper()
2020-10-21 10:58:54 +00:00
sh "./gradlew clean --continue test --info -Ptests.failFast=true"
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
}
}
stage('Integration Tests') {
steps {
2020-10-21 10:58:54 +00:00
sh "./gradlew clean --continue integrationTest --info -Ptests.failFast=true"
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
}
}
stage('Smoke Tests') {
steps {
2020-10-21 10:58:54 +00:00
sh "./gradlew clean --continue smokeTest --info -Ptests.failFast=true"
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
}
}
stage('Slow Integration Tests') {
steps {
2020-10-21 10:58:54 +00:00
sh "./gradlew clean --continue slowIntegrationTest --info -Ptests.failFast=true"
}
}
stage('Publish Release to Docker Hub') {
when {
expression { isReleaseTag && !isInternalRelease && !isReleaseCandidate}
}
steps {
withCredentials([
usernamePassword(credentialsId: 'corda-publisher-docker-hub-credentials',
usernameVariable: 'DOCKER_USERNAME',
passwordVariable: 'DOCKER_PASSWORD')
]) {
sh script: [
'./gradlew',
COMMON_GRADLE_PARAMS,
'docker:buildAndPushDockerhubImages'
].join(' ')
}
INFRA-424: Merge openj9 updates into 4.6 (#6683) * INFRA-424 linux1 jenkinsfile * INFRA-424 full run * INFRA-424 bigger heap size * Upgraded DJVM to handle BC - latest version of BC is a multirelease JAR. When reading JKS keystore if a BC EdDSAPrivateKey is returned then swap for a net.i2p EdDSA private key. * Temporary downgrade of BC * Removed the BC EdDSA conversion * INFRA-424 bigger heap size * Upgrading Quasar to handle openJ9 different fields. * INFRA-424: Handle lack of SUPPRESSED_SENTINEL in openj9. * INFRA-424: If BCEdDSA public or private key is generated convert to net.i2p EdDSA form. * INFRA-424 bigger heap size * INFRA-424: On openJ9 only getting upto milli resolution. * INFRA-424: Handle keystore returning a BCEdDSAPrivateKey. * INFRA-424: Disable test on JDK11, as it requires the custom cordapp to generate JDK8 contract code, which we now check for. * INFRA-424: Truncated time test to resolution of millis for openj9. * INFRA-424 disabling log intensive tests until a fix is developed * INFRA-424 one more test disabled * INFRA-424: Disabled a couple of tests failing on openj9. * INFRA-424: Disabling failing openj9 tests. * INFRA-424: Disabling test failing on openj9. * INFRA-424: Ignoring another flaky sleep test on openj9. * INFRA-424 run integrationTests * INFRA-424 set timeout to 4 hours * INFRA-424: Cope with exception message from openj9. * INFRA-424: Handle the coloured text characters openj9 adds. * INFRA-424: Disabling test as it is generating JDK11 contract code under JDK11. Currently on JDK8 contract code allowed. * INFRA-424: Commenting test out for openj9. Output of the processs thats read by the test is sometimes garbled. * INFRA-424 switching to smoke tests * INFRA-424 switching to slow integration tests * INFRA-424 full run * INFRA-424 moving jenkinsfile * INFRA-424 removing references * INFRA-424: Created common IS_OPENJ9 func for ignoring tests. Co-authored-by: Schife <razvan.codreanu@r3.com>
2020-09-02 13:35:30 +00:00
}
}
}
post {
always {
junit '**/build/test-results/**/*.xml'
}
cleanup {
deleteDir() /* clean up our workspace */
}
}
2020-10-21 10:58:54 +00:00
}