[java-idp-integration-tests] branch main updated: Add tests for IdP 5.1.3 and 5.1.4-SNAPSHOT
Tom Zeller
tzeller at dragonacea.biz
Sat Aug 3 16:14:21 UTC 2024
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-integration-tests.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-integration-tests.git;a=commit;h=13caa5de17b73872911374adcc612f4a5b865843
The following commit(s) were added to refs/heads/main by this push:
new 13caa5d Add tests for IdP 5.1.3 and 5.1.4-SNAPSHOT
13caa5d is described below
commit 13caa5de17b73872911374adcc612f4a5b865843
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Sat Aug 3 11:14:10 2024 -0500
Add tests for IdP 5.1.3 and 5.1.4-SNAPSHOT
Plan on removing 5.1.2 in the future.
Could have created a separate Jenkins job for the IdP V5.1.x but this
was easier.
---
src/jenkins/trigger-integration-v17.jenkinsfile | 52 +++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/src/jenkins/trigger-integration-v17.jenkinsfile b/src/jenkins/trigger-integration-v17.jenkinsfile
index 7a4b1a5..4c21bdd 100644
--- a/src/jenkins/trigger-integration-v17.jenkinsfile
+++ b/src/jenkins/trigger-integration-v17.jenkinsfile
@@ -61,5 +61,57 @@ pipeline {
build job: "java-idp-integration-tests-v5.1.2-windows-jetty-12", wait: true
}
}
+ // IdP V5.1.3
+ stage('Test IdP V5.1.3 with Jetty 11 on Linux') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1.3-linux-jetty", wait: true
+ }
+ }
+ stage('Test IdP V5.1.3 with Jetty 12 on Linux') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1.3-linux-jetty-12", wait: true
+ }
+ }
+ stage('Test IdP V5.1.3 with Tomcat 10.1 on Linux') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1.3-linux-tomcat", wait: true
+ }
+ }
+ stage('Test IdP V5.1.3 with Jetty 11 on Windows') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1.3-windows-jetty", wait: true
+ }
+ }
+ stage('Test IdP V5.1.3 with Jetty 12 on Windows') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1.3-windows-jetty-12", wait: true
+ }
+ }
+ // IdP V5.1 snapshot
+ stage('Test IdP V5.1 snapshot with Jetty 11 on Linux') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1-linux-jetty", wait: true
+ }
+ }
+ stage('Test IdP V5.1 snapshot with Jetty 12 on Linux') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1-linux-jetty-12", wait: true
+ }
+ }
+ stage('Test IdP V5.1 snapshot with Tomcat 10.1 on Linux') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1-linux-tomcat", wait: true
+ }
+ }
+ stage('Test IdP V5.1 snapshot with Jetty 11 on Windows') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1-windows-jetty", wait: true
+ }
+ }
+ stage('Test IdP V5.1 snapshot with Jetty 12 on Windows') {
+ steps {
+ build job: "java-idp-integration-tests-v5.1-windows-jetty-12", wait: true
+ }
+ }
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list