[java-idp-plugin-scripting] branch main updated: Update version matrix tests after IdP Version 5.1.1 release - Move SNAPSHOT testignto 5.1.2-SNAPSHOT - Add 5.1.1 to matrix
Rod Widdowson
rdw at steadingsoftware.com
Tue Mar 26 10:22:44 UTC 2024
This is an automated email from the git hooks/post-receive script.
rdw 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=08557ea95fdd2b9623cde63bc9e02118bfefbc6d
The following commit(s) were added to refs/heads/main by this push:
new 08557ea Update version matrix tests after IdP Version 5.1.1 release - Move SNAPSHOT testignto 5.1.2-SNAPSHOT - Add 5.1.1 to matrix
08557ea is described below
commit 08557ea95fdd2b9623cde63bc9e02118bfefbc6d
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Mar 26 10:21:44 2024 +0000
Update version matrix tests after IdP Version 5.1.1 release
- Move SNAPSHOT testignto 5.1.2-SNAPSHOT
- Add 5.1.1 to matrix
---
resources/jenkins/idp-versions.jenkinsfile | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/resources/jenkins/idp-versions.jenkinsfile b/resources/jenkins/idp-versions.jenkinsfile
index 606f57d..775cefd 100644
--- a/resources/jenkins/idp-versions.jenkinsfile
+++ b/resources/jenkins/idp-versions.jenkinsfile
@@ -11,7 +11,7 @@
* 1) Test current plugin snapshot against every (potentially) supported idp version
*
* git tag MAIN
- * idp versions 5.0.0 5.1.0 5.1.1-SNAPSHOT
+ * idp versions 5.0.0 5.1.0 5.1.1 5.1.2-SNAPSHOT
*
* 2) Test currrent idp version against every (potentially) supported plugin version
*
@@ -60,17 +60,24 @@ pipeline {
}
}
}
- stage('Test plugin snapshot with current IdP version') {
+ stage('Test plugin snapshot with minor IdP version') {
steps {
dir('java-idp-plugin-scripting-main') {
sh 'mvn clean test -D idp.version=5.1.0'
}
}
}
+ stage('Test plugin snapshot with current IdP version') {
+ steps {
+ dir('java-idp-plugin-scripting-main') {
+ sh 'mvn clean test -D idp.version=5.1.1'
+ }
+ }
+ }
stage('Test plugin snapshot with future IdP version') {
steps {
dir('java-idp-plugin-scripting-main') {
- sh 'mvn clean test -D idp.version=5.1.1-SNAPSHOT'
+ sh 'mvn clean test -D idp.version=5.1.2-SNAPSHOT'
}
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list