You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by dj...@apache.org on 2021/04/30 23:23:20 UTC

[aries-antora-site] branch master updated: add a Jenkinsfile to trigger website build

This is an automated email from the ASF dual-hosted git repository.

djencks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-antora-site.git


The following commit(s) were added to refs/heads/master by this push:
     new de8f02d  add a Jenkinsfile to trigger website build
de8f02d is described below

commit de8f02d0eb90d8cc0377fd7b2485eca82467b5cf
Author: David Jencks <dj...@apache.org>
AuthorDate: Fri Apr 30 16:22:50 2021 -0700

    add a Jenkinsfile to trigger website build
---
 Jenkinsfile | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..abfa9e3
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,18 @@
+pipeline {
+    agent {
+        label 'git-websites'
+    }
+
+    stages {
+        stage('trigger-site-build') {
+            when {
+                branch 'master'
+                changeset '**/*'
+            }
+
+            steps {
+                build job: 'Aries/aries-website', wait: false
+            }
+        }
+    }
+}
\ No newline at end of file