[java-plugin-storage-jdbc] branch main updated: Remove old Jenkins pipeline in favor of consolidated one.
Codeberg
noreply at shibboleth.net
Fri May 15 13:45:02 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-plugin-storage-jdbc.
View the commit online:
https://codeberg.org/Shibboleth/java-plugin-storage-jdbc/commit/6f55bf0a2056385d45ad18d63229c5331149b1d3
The following commit(s) were added to refs/heads/main by this push:
new 6f55bf0 Remove old Jenkins pipeline in favor of consolidated one.
6f55bf0 is described below
commit 6f55bf0a2056385d45ad18d63229c5331149b1d3
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Fri May 15 09:44:40 2026 -0400
Remove old Jenkins pipeline in favor of consolidated one.
---
resources/jenkins/idp-versions.jenkinsfile | 87 ------------------------------
1 file changed, 87 deletions(-)
diff --git a/resources/jenkins/idp-versions.jenkinsfile b/resources/jenkins/idp-versions.jenkinsfile
deleted file mode 100644
index b655dd5..0000000
--- a/resources/jenkins/idp-versions.jenkinsfile
+++ /dev/null
@@ -1,87 +0,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-plugin-storage-jdbc') {
- git branch: 'main', url: 'https://git.shibboleth.net/git/java-plugin-storage-jdbc'
- }
- }
- }
- stage('Checkout current release plugin') {
- steps {
- dir('java-plugin-storage-jdbc-2.0.0') {
- git branch: 'main', url: 'https://git.shibboleth.net/git/java-plugin-storage-jdbc'
- sh 'git checkout 2.0.0'
- }
- }
- }
- /* 1) Test current plugin snapshot against every (potentially) supported idp version */
-
- stage('Test 5.0.0') {
- steps {
- dir('java-plugin-storage-jdbc') {
- sh 'mvn clean test -D idp.version=5.0.0'
- }
- }
- }
- stage('Test 5.1.0') {
- steps {
- dir('java-plugin-storage-jdbc') {
- sh 'mvn clean test -D idp.version=5.1.0'
- }
- }
- }
- stage('Test 5.2.0') {
- steps {
- dir('java-plugin-storage-jdbc') {
- sh 'mvn clean test -D idp.version=5.2.0'
- }
- }
- }
- /* 2) Test currrent idp version against every (potentially) supported plugin version */
-
- stage('Test IdP latest against plugin Release 2.0') {
- steps {
- dir('java-plugin-storage-jdbc') {
- sh 'mvn clean test -D idp.version=5.2.1'
- }
- }
- }
- stage('Test IdP latest against plugin SNAPSHOT') {
- steps {
- dir('java-plugin-storage-jdbc-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