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/25 20:02:50 UTC

[bigtop] branch jenkinsfile created (now 3f5a6e3)

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

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


      at 3f5a6e3  Jenkinsfile

This branch includes the following new commits:

     new 3f5a6e3  Jenkinsfile

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[bigtop] 01/01: Jenkinsfile

Posted by of...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

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

    Jenkinsfile
---
 Jenkinsfile.site | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)

diff --git a/Jenkinsfile.site b/Jenkinsfile.site
new file mode 100644
index 0000000..31f47bd
--- /dev/null
+++ b/Jenkinsfile.site
@@ -0,0 +1,73 @@
+/*
+ * 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.
+ */
+def NODE = 'git-websites'
+
+pipeline {
+    agent {
+        label "$NODE"
+    }
+
+    options {
+        buildDiscarder(
+            logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
+        )
+
+        checkoutToSubdirectory('project')
+    }
+
+    stages {
+        stage('Website') {
+            agent {
+                dockerfile {
+                    dir 'project'
+                    label "$NODE"
+                    reuseNode true
+                    args '-u root'
+                }
+            }
+
+            environment {
+                HOME = "$WORKSPACE"
+            }
+
+            steps {
+                sh "cd $WORKSPACE/project && mvn site"
+            }
+        }
+
+
+     /*  stage('Deploy') {
+            when {
+                branch 'master'
+            }
+
+            steps {
+                dir('deploy/staging') {
+                    deleteDir()
+                    sh 'git clone -b asf-site https://gitbox.apache.org/repos/asf/camel-website.git .'
+                    sh 'git rm -r *'
+                    sh "cp -R $WORKSPACE/camel-website/public/. ."
+                    sh 'git add .'
+                    sh 'git commit -m "Website updated to $(git rev-parse --short HEAD)"'
+                    sh 'git push origin asf-site'
+                }
+            }
+       } */
+    }
+}