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