[java-idp-plugin-scripting] branch main updated: Test current and next plugin with current and next IdP
Tom Zeller
tzeller at dragonacea.biz
Fri Dec 15 17:03:34 UTC 2023
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch main
in repository java-idp-plugin-scripting.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-scripting.git;a=commit;h=8b75e6d90839c37f629c82a545aa46422b6db0d1
The following commit(s) were added to refs/heads/main by this push:
new 8b75e6d Test current and next plugin with current and next IdP
8b75e6d is described below
commit 8b75e6d90839c37f629c82a545aa46422b6db0d1
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Fri Dec 15 11:03:25 2023 -0600
Test current and next plugin with current and next IdP
---
resources/jenkins/idp-versions.jenkinsfile | 41 +++++++++++++++++++++++++++---
1 file changed, 37 insertions(+), 4 deletions(-)
diff --git a/resources/jenkins/idp-versions.jenkinsfile b/resources/jenkins/idp-versions.jenkinsfile
index 3617f0e..7e05d8a 100644
--- a/resources/jenkins/idp-versions.jenkinsfile
+++ b/resources/jenkins/idp-versions.jenkinsfile
@@ -18,14 +18,47 @@ pipeline {
sh 'mvn --version'
}
}
- stage('Test Current IdP Version') {
+ stage('Checkout plugin snapshot') {
steps {
- sh 'mvn clean test -D idp.version=5.0.0'
+ dir('java-idp-plugin-scripting-main') {
+ git branch: 'main', url: 'https://git.shibboleth.net/git/java-idp-plugin-scripting'
+ }
}
}
- stage('Test Future IdP Version') {
+ stage('Checkout current plugin') {
steps {
- sh 'mvn clean test -D idp.version=5.1.0-SNAPSHOT'
+ dir('java-idp-plugin-scripting-2.0.0') {
+ git branch: 'main', url: 'https://git.shibboleth.net/git/java-idp-plugin-scripting'
+ sh 'git checkout 2.0.0'
+ }
+ }
+ }
+ stage('Test plugin snapshot with current IdP version') {
+ steps {
+ dir('java-idp-plugin-scripting-main') {
+ sh 'mvn clean test -D idp.version=5.0.0'
+ }
+ }
+ }
+ stage('Test plugin snapshot with future IdP version') {
+ steps {
+ dir('java-idp-plugin-scripting-main') {
+ sh 'mvn clean test -D idp.version=5.1.0-SNAPSHOT'
+ }
+ }
+ }
+ stage('Test current snapshot with current IdP version') {
+ steps {
+ dir('java-idp-plugin-scripting-2.0.0') {
+ sh 'mvn clean test -D idp.version=5.1.0'
+ }
+ }
+ }
+ stage('Test current snapshot with future IdP version') {
+ steps {
+ dir('java-idp-plugin-scripting-2.0.0') {
+ sh 'mvn clean test -D idp.version=5.1.0-SNAPSHOT'
+ }
}
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list