[java-idp-plugin-scripting] branch main updated: Remove old Jenkins pipeline in favor of consolidated one.
Codeberg
noreply at shibboleth.net
Fri May 15 13:23:44 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-idp-plugin-scripting.
View the commit online:
https://codeberg.org/Shibboleth/java-idp-plugin-scripting/commit/58def4e7a400342a068a4625ed05d3d59c4d5886
The following commit(s) were added to refs/heads/main by this push:
new 58def4e Remove old Jenkins pipeline in favor of consolidated one.
58def4e is described below
commit 58def4e7a400342a068a4625ed05d3d59c4d5886
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Fri May 15 09:23:34 2026 -0400
Remove old Jenkins pipeline in favor of consolidated one.
---
resources/jenkins/idp-versions.jenkinsfile | 99 ------------------------------
1 file changed, 99 deletions(-)
diff --git a/resources/jenkins/idp-versions.jenkinsfile b/resources/jenkins/idp-versions.jenkinsfile
deleted file mode 100644
index 45b0af7..0000000
--- a/resources/jenkins/idp-versions.jenkinsfile
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- * TESTING VECTORS
- *
- * Currently there is only one version available against current IdP development
- *
- * net.shibboleth.idp.plugin.rhino.idpVersionMax.2.0.0= 6.0.0
- * net.shibboleth.idp.plugin.rhino.idpVersionMin.2.0.0= 5.0.0
- *
- * Next plugin is planned to have the same support boundaries
- *
- * 1) Test current plugin snapshot against every (potentially) supported idp version
- *
- * git tag MAIN
- * idp versions 5.0.0 5.1.0 5.2.0
- *
- * 2) Test currrent idp version against every (potentially) supported plugin version
- *
- * git tag(s) 2.0.0
- * idp version 5.2.0
- */
-pipeline {
- agent {
- label 'Rocky9'
- }
- options {
- buildDiscarder(logRotator(numToKeepStr: '30'))
- }
- tools {
- jdk 'Amazon-17'
- maven 'Apache Maven'
- }
- triggers {
- cron "@weekly"
- }
- stages {
- stage('Display Java and Maven versions') {
- steps {
- sh 'mvn --version'
- }
- }
- stage('Checkout plugin snapshot') {
- steps {
- dir('java-idp-plugin-scripting-main') {
- git branch: 'main', url: 'https://git.shibboleth.net/git/java-idp-plugin-scripting'
- }
- }
- }
- stage('Checkout current plugin') {
- steps {
- 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'
- }
- }
- }
- /* 1) Test current plugin snapshot against every (potentially) supported idp version */
- stage('Test plugin snapshot with oldest IdP version') {
- steps {
- dir('java-idp-plugin-scripting-main') {
- sh 'mvn clean test -D idp.version=5.0.0'
- }
- }
- }
- 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 current IdP version 5.2.0') {
- steps {
- dir('java-idp-plugin-scripting-main') {
- sh 'mvn clean test -D idp.version=5.2.0'
- }
- }
- }
- /* 2) Test currrent idp version against every (potentially) supported plugin version */
- 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.2.1'
- }
- }
- }
-
- }
- post {
- always {
- testNG(reportFilenamePattern: '**/target/surefire-reports/testng-results.xml')
- }
- failure {
- emailext(to: 'commits at shibboleth.net',
- subject: "Build failed : ${currentBuild.fullDisplayName}",
- body: "See ${env.BUILD_URL}",
- attachLog: 'true')
- }
- }
-}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list