commit | de8f02d0eb90d8cc0377fd7b2485eca82467b5cf | [log] [tgz] |
---|---|---|
author | David Jencks <djencks@apache.org> | Fri Apr 30 16:22:50 2021 -0700 |
committer | David Jencks <djencks@apache.org> | Fri Apr 30 16:22:50 2021 -0700 |
tree | 31c79a5da03a7ac8f71902a78d17001e42add25c | |
parent | 212bb96dcab79614fc2c32675a7708327e4a17b8 [diff] |
add a Jenkinsfile to trigger website build
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