build site!
This commit is contained in:
35
Jenkinsfile
vendored
Normal file
35
Jenkinsfile
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
pipeline {
|
||||
agent {
|
||||
docker {
|
||||
image 'jvconseil/jekyll-docker'
|
||||
args '''
|
||||
-u root:root
|
||||
-v "${PWD}:/srv"
|
||||
-e JEKYLL_UID=1001 -e JEKYLL_GID=1001
|
||||
'''
|
||||
}
|
||||
}
|
||||
environment {
|
||||
KEY_FILE = credentials('ubuntu-box.myemail.cloud')
|
||||
}
|
||||
stages {
|
||||
stage('Prep') {
|
||||
steps {
|
||||
sh 'chmod -R 777 .'
|
||||
sh 'gem install bundler'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'bundle install'
|
||||
sh 'bundle exec jekyll build'
|
||||
}
|
||||
}
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
sh 'scp -r -o StrictHostKeychecking=no -i $KEY_FILE _site/ ubuntu@box.myemail.cloud:/home/ubuntu'
|
||||
sh 'ssh ubuntu@box.myemail.cloud -i $KEY_FILE \'bash -s\' < deploy.sh'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user