You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by of...@apache.org on 2020/09/26 13:09:30 UTC

[bigtop] branch master updated: Introduce Jenkinsfile.site for publishing to website

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

oflebbe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/master by this push:
     new cce70fa  Introduce Jenkinsfile.site for publishing to website
cce70fa is described below

commit cce70fa1855af190bcdc9e654c09df24ad296fa9
Author: Olaf Flebbe <of...@oflebbe.de>
AuthorDate: Fri Sep 25 22:02:26 2020 +0200

    Introduce Jenkinsfile.site for publishing to website
---
 Jenkinsfile.site | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 71 insertions(+)

diff --git a/Jenkinsfile.site b/Jenkinsfile.site
new file mode 100644
index 0000000..0959c7f
--- /dev/null
+++ b/Jenkinsfile.site
@@ -0,0 +1,71 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+//
+// This Jenkinsfile is supposed to be running on
+// https://ci-builds.apache.org/job/BigTop/job/pipeline/
+//
+def NODE = 'git-websites'
+
+pipeline {
+    agent {
+        label "$NODE"
+    }
+
+    tools {
+        maven 'Maven 3 (latest)'
+        jdk 'JDK 11 (latest)'
+    }
+
+    options {
+        buildDiscarder(
+            logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
+        )
+
+        checkoutToSubdirectory('project')
+    }
+
+    stages {
+        stage('Website') {
+            steps {
+                    sh "cd $WORKSPACE/project && mvn site"
+            }
+        }
+
+        stage('Deploy to ASF site') {
+            when {
+                branch 'master'
+            }
+
+            steps {
+                dir('deploy') {
+                    deleteDir()
+                    sh 'git clone -b asf-site https://gitbox.apache.org/repos/asf/bigtop.git .'
+                    sh 'git rm -r *'
+                    sh 'cp -r ../project/target/site/* .'
+                    sh 'date >updated.txt'
+                    writeFile file: '.asf.yaml', text: "publish:\n  whoami: asf-site\n"
+                    sh 'git add .'
+                    sh 'git commit -m "Website updated to $(git rev-parse --short HEAD)"'
+                    sh 'git push origin asf-site'
+                }
+            }
+       }
+    }
+}