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
commit 6e47781cca7e69ef0e37c481d4c956c9427dd156 Author: Francis Chuang <[email protected]> AuthorDate: Sun Jun 9 15:40:40 2019 +1000 Add Jenkinsfile for automated site build --- Jenkinsfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..99e0360 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,30 @@ +pipeline { + agent { + node { + label 'git-websites' + } + } + + stages { + stage('Build') { + steps { + sh ''' + cd site/; + docker-compose run build-site + ''' + } + } + + stage('Test') { + steps { + echo 'Testing..' + } + } + + stage('Deploy') { + steps { + echo 'Deploying....' + } + } + } +} \ No newline at end of file
