[java-idp-plugin-scripting] branch main updated: Fix version matrix test
Rod Widdowson
rdw at steadingsoftware.com
Tue Aug 6 10:32:34 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=95cf345f2199ce89eccaf56ed3f41471a5b1f038
The following commit(s) were added to refs/heads/main by this push:
new 95cf345 Fix version matrix test
95cf345 is described below
commit 95cf345f2199ce89eccaf56ed3f41471a5b1f038
Author: Rod Widdowson <rdw at steadingsoftware.com>
AuthorDate: Tue Aug 6 11:19:26 2024 +0100
Fix version matrix test
---
.../plugin/scripting/nashorn/jdk/plugin.properties | 6 +++---
resources/jenkins/idp-versions.jenkinsfile | 21 ++++++++++++++-------
2 files changed, 17 insertions(+), 10 deletions(-)
diff --git a/nashorn-jdk-impl/src/main/resources/net/shibboleth/idp/plugin/scripting/nashorn/jdk/plugin.properties b/nashorn-jdk-impl/src/main/resources/net/shibboleth/idp/plugin/scripting/nashorn/jdk/plugin.properties
index 9660e16..dedc90e 100644
--- a/nashorn-jdk-impl/src/main/resources/net/shibboleth/idp/plugin/scripting/nashorn/jdk/plugin.properties
+++ b/nashorn-jdk-impl/src/main/resources/net/shibboleth/idp/plugin/scripting/nashorn/jdk/plugin.properties
@@ -1,9 +1,9 @@
# Properties defining this plugin
-plugin.id = net.shibboleth.idp.plugin.nashorn
+plugin.id = net.shibboleth.idp.plugin.jetty-base
# Only used when package manifest is not available
-plugin.version = 2.0.0
-plugin.license =/net/shibboleth/idp/plugin/scripting/nashorn/jdk/doc/LICENSE.txt
+plugin.version = 0.0.1
+
# No prereqs
#plugin.modules.required =
diff --git a/resources/jenkins/idp-versions.jenkinsfile b/resources/jenkins/idp-versions.jenkinsfile
index cb69b80..8a536ae 100644
--- a/resources/jenkins/idp-versions.jenkinsfile
+++ b/resources/jenkins/idp-versions.jenkinsfile
@@ -11,12 +11,12 @@
* 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 5.1.2 5.1.3-SNAPSHOT
+ * idp versions 5.0.0 5.1.0 5.1.1 5.1.2 5.1.3 5.2.0-SNAPSHOT
*
* 2) Test currrent idp version against every (potentially) supported plugin version
*
* git tag(s) 2.0.0
- * idp version 5.1.3-SNAPSHOT
+ * idp version 5.2.0-SNAPSHOT
*/
pipeline {
agent {
@@ -61,31 +61,38 @@ pipeline {
}
}
}
- stage('Test plugin snapshot with minor IdP version') {
+ stage('Test plugin snapshot with minor IdP version 5.1.0') {
steps {
dir('java-idp-plugin-scripting-main') {
sh 'mvn clean test -D idp.version=5.1.0'
}
}
}
- stage('Test plugin snapshot with another minor IdP version') {
+ stage('Test plugin snapshot with minor IdP version 5.1.1') {
steps {
dir('java-idp-plugin-scripting-main') {
sh 'mvn clean test -D idp.version=5.1.1'
}
}
}
- stage('Test plugin snapshot with current IdP version') {
+ stage('Test plugin snapshot with minor IdP version 5.1.2') {
steps {
dir('java-idp-plugin-scripting-main') {
sh 'mvn clean test -D idp.version=5.1.2'
}
}
}
+ stage('Test plugin snapshot with current IdP version 5.1.3') {
+ steps {
+ dir('java-idp-plugin-scripting-main') {
+ sh 'mvn clean test -D idp.version=5.1.3'
+ }
+ }
+ }
stage('Test plugin snapshot with future IdP version') {
steps {
dir('java-idp-plugin-scripting-main') {
- sh 'mvn clean test -D idp.version=5.1.3-SNAPSHOT'
+ sh 'mvn clean test -D idp.version=5.2.0-SNAPSHOT'
}
}
}
@@ -93,7 +100,7 @@ pipeline {
stage('Test release plugin with future IdP version') {
steps {
dir('java-idp-plugin-scripting-2.0.0') {
- sh 'mvn clean test -D idp.version=5.1.3-SNAPSHOT'
+ sh 'mvn clean test -D idp.version=5.2.0-SNAPSHOT'
}
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list