Skip to content

Commit

Permalink
Build Tyrus on JDK 17
Browse files Browse the repository at this point in the history
Signed-off-by: jansupol <[email protected]>
  • Loading branch information
jansupol committed Dec 20, 2023
1 parent 5ad705f commit 4295c2e
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions etc/jenkins/Jenkinsfile_ci_build
Original file line number Diff line number Diff line change
Expand Up @@ -22,34 +22,34 @@ pipeline {
'''
}
}
stage('JDK 13 ') {
// stage('JDK 13 ') {
// agent {
// label 'centos-7'
// }
// tools {
// jdk 'openjdk-jdk13-latest'
// maven 'apache-maven-latest'
// }
// steps {
// sh '''
// mvn -U -C -Dtyrus.test.container.client=org.glassfish.tyrus.container.grizzly.client.GrizzlyClientContainer -Pbundles clean install -Dmaven.javadoc.skip=true
// '''
// }
// }
stage('JDK 17 ') {
agent {
label 'centos-7'
}
tools {
jdk 'openjdk-jdk13-latest'
jdk 'openjdk-jdk17-latest'
maven 'apache-maven-latest'
}
steps {
sh '''
mvn -U -C -Dtyrus.test.container.client=org.glassfish.tyrus.container.grizzly.client.GrizzlyClientContainer -Pbundles clean install -Dmaven.javadoc.skip=true
mvn -U -C -Dtyrus.test.container.client=org.glassfish.tyrus.container.grizzly.client.GrizzlyClientContainer -Pbundles clean install -Dmaven.javadoc.skip=true
'''
}
}
//stage('JDK 17 ') {
// agent {
// label 'centos-7'
// }
// tools {
// jdk 'openjdk-jdk17-latest'
// maven 'apache-maven-latest'
// }
// steps {
// sh '''
// mvn -U -C -Dtyrus.test.container.client=org.glassfish.tyrus.container.grizzly.client.GrizzlyClientContainer -Pbundles clean install -Dmaven.javadoc.skip=true
// '''
// }
//}
}
}
}
Expand Down

0 comments on commit 4295c2e

Please sign in to comment.