Skip to content

Commit

Permalink
OpenJ9: Remove explicit jitserver enable option (#710)
Browse files Browse the repository at this point in the history
Is enabled by default on x/p/z linux in all versions
Related ibmruntimes#132

Signed-off-by: Adam Brousseau <[email protected]>
  • Loading branch information
AdamBrousseau authored Jun 6, 2023
1 parent bc206dc commit 722dd6a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions pipelines/jobs/configurations/jdk11u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Config11 {
weekly : ['extended.openjdk', 'extended.perf', 'special.functional', 'sanity.external']
],
configureArgs : [
'openj9' : '--enable-jitserver --enable-dtrace=auto',
'openj9' : '--enable-dtrace=auto',
'temurin' : '--enable-dtrace=auto',
'corretto' : '--enable-dtrace=auto',
'SapMachine' : '--enable-dtrace=auto',
Expand Down Expand Up @@ -126,7 +126,7 @@ class Config11 {
test : 'default',
configureArgs : [
'temurin' : '--enable-dtrace=auto',
'openj9' : '--enable-dtrace=auto --enable-jitserver'
'openj9' : '--enable-dtrace=auto'
],
buildArgs : [
'temurin' : '--create-sbom'
Expand Down
4 changes: 2 additions & 2 deletions pipelines/jobs/configurations/jdk17u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Config17 {
openj9 : '!(centos6||rhel6)'
],
configureArgs : [
'openj9' : '--enable-dtrace --enable-jitserver',
'openj9' : '--enable-dtrace',
'temurin' : '--enable-dtrace'
],
buildArgs : [
Expand Down Expand Up @@ -109,7 +109,7 @@ class Config17 {
dockerImage : 'adoptopenjdk/centos7_build_image',
test : 'default',
configureArgs : [
'openj9' : '--enable-dtrace --enable-jitserver'
'openj9' : '--enable-dtrace'
],
buildArgs : [
'temurin' : '--create-jre-image --create-sbom'
Expand Down
4 changes: 2 additions & 2 deletions pipelines/jobs/configurations/jdk20u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Config20 {
openj9 : '!(centos6||rhel6)'
],
configureArgs : [
'openj9' : '--enable-dtrace --enable-jitserver',
'openj9' : '--enable-dtrace',
'temurin' : '--enable-dtrace'
],
buildArgs : [
Expand Down Expand Up @@ -102,7 +102,7 @@ class Config20 {
test : 'default',
configureArgs : [
'temurin' : '--enable-dtrace',
'openj9' : '--enable-dtrace --enable-jitserver'
'openj9' : '--enable-dtrace'
],
buildArgs : [
'temurin' : '--create-jre-image --create-sbom'
Expand Down
4 changes: 2 additions & 2 deletions pipelines/jobs/configurations/jdk21_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Config21 {
openj9 : '!(centos6||rhel6)'
],
configureArgs : [
'openj9' : '--enable-dtrace --enable-jitserver',
'openj9' : '--enable-dtrace',
'temurin' : '--enable-dtrace'
],
buildArgs : [
Expand Down Expand Up @@ -100,7 +100,7 @@ class Config21 {
dockerImage : 'adoptopenjdk/centos7_build_image',
test : 'default',
configureArgs : [
'openj9' : '--enable-dtrace --enable-jitserver'
'openj9' : '--enable-dtrace'
],
buildArgs : [
'temurin' : '--create-jre-image --create-sbom'
Expand Down
4 changes: 0 additions & 4 deletions pipelines/jobs/configurations/jdk8u_pipeline_config.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ class Config8 {
],
test : 'default',
configureArgs : [
'openj9' : '--enable-jitserver',
'dragonwell' : '--enable-unlimited-crypto --with-jvm-variants=server --with-zlib=system',
],
buildArgs : [
Expand Down Expand Up @@ -123,9 +122,6 @@ class Config8 {
arch: 'ppc64le',
dockerImage : 'adoptopenjdk/centos7_build_image',
test : 'default',
configureArgs : [
'openj9' : '--enable-jitserver'
],
buildArgs : [
'temurin' : '--create-sbom'
]
Expand Down

0 comments on commit 722dd6a

Please sign in to comment.