[java-parent-project] branch maint-17.1 updated: Jenkinsfile to deploy the stack / IdP 5.1

Tom Zeller tzeller at dragonacea.biz
Fri Aug 2 21:44:39 UTC 2024


This is an automated email from the git hooks/post-receive script.

tzeller pushed a commit to branch maint-17.1
in repository java-parent-project.

View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=227114623d3ec4ce46f68f88bb3d1480c8dcd41e

The following commit(s) were added to refs/heads/maint-17.1 by this push:
     new 2271146  Jenkinsfile to deploy the stack / IdP 5.1
2271146 is described below

commit 227114623d3ec4ce46f68f88bb3d1480c8dcd41e
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Fri Aug 2 16:44:29 2024 -0500

    Jenkinsfile to deploy the stack / IdP 5.1
---
 .../jenkins/trigger-nightly-v17.1.jenkinsfile      | 48 ++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/resources/jenkins/trigger-nightly-v17.1.jenkinsfile b/resources/jenkins/trigger-nightly-v17.1.jenkinsfile
new file mode 100644
index 0000000..41b34de
--- /dev/null
+++ b/resources/jenkins/trigger-nightly-v17.1.jenkinsfile
@@ -0,0 +1,48 @@
+/*
+ * Trigger deployment of Java 17.1 / IdP 5.1 stack.
+ */
+pipeline {
+    agent {
+        label 'built-in'
+    }
+    options {
+        buildDiscarder(logRotator(numToKeepStr: '30'))
+    }
+    stages {
+        stage('Deploy parent 17.1') {
+            steps {
+                build job: "java-parent-project-v17.1-nightly", wait: true
+            }
+        }
+        stage('Deploy shib-shared 9.1') {
+            steps {
+                build job: "java-shib-shared-v9.1-nightly", wait: true
+            }
+        }
+        stage('Deploy opensaml 5.1') {
+            steps {
+                build job: "java-opensaml-v5.1-nightly", wait: true
+            }
+        }
+        stage('Deploy shib-metadata 5.1') {
+            steps {
+                build job: "java-shib-metadata-v5.1-nightly", wait: true
+            }
+        }
+        stage('Deploy shib-attribute 5.1') {
+            steps {
+                build job: "java-shib-attribute-v5.1-nightly", wait: true
+            }
+        }
+        stage('Deploy shib-profile 5.1') {
+            steps {
+                build job: "java-shib-profile-v5.1-nightly", wait: true
+            }
+        }
+        stage('Deploy identity-provider 5.1') {
+            steps {
+                build job: "java-identity-provider-v5.1-nightly", wait: true
+            }
+        }
+    }
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list