This is an automated email from the ASF dual-hosted git repository.
francischuang pushed a commit to branch test-site
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/test-site by this push:
new 5718fba Add Jenkinsfile for automated site build
5718fba is described below
commit 5718fba998ed5a1905a7b62cd4a10163cf6280cc
Author: Francis Chuang <[email protected]>
AuthorDate: Sun Jun 9 15:40:40 2019 +1000
Add Jenkinsfile for automated site build
---
Jenkinsfile | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..88b342b
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,31 @@
+pipeline {
+ agent {
+ node {
+ label 'git-websites'
+ }
+ }
+
+ stages {
+ stage('Build') {
+ steps {
+ sh '''
+ uname -a;
+ docker version
+ docker-compose version
+ '''
+ }
+ }
+
+ stage('Test') {
+ steps {
+ echo 'Testing..'
+ }
+ }
+
+ stage('Deploy') {
+ steps {
+ echo 'Deploying....'
+ }
+ }
+ }
+}
\ No newline at end of file