also build web if not publishing

This commit is contained in:
Ell 2023-04-26 12:02:26 +02:00
parent 01a054b2e7
commit aadb5d931b

47
Jenkinsfile vendored
View file

@ -1,26 +1,37 @@
pipeline { pipeline {
agent { label 'web' } agent none
stages { stages {
stage('Site') { stage('Build') {
when { agent any
branch 'main' stages {
} stage('Site') {
steps { steps {
sh '''cd web sh '''cd web
bundle bundle
bundle exec jekyll build''' bundle exec jekyll build'''
sh 'rm -rf /var/www/tinylifegame/*' stash includes: "web/_site/.", name: "docs"
sh 'cp -r web/_site/. /var/www/tinylifegame/' }
}
stage('Docs') {
steps {
sh '''cd docs
dotnet tool restore
dotnet docfx'''
stash includes: "docs/_site/.", name: "docs"
}
}
} }
} }
stage('Docs') { stage('Publish') {
when { when { branch 'main' }
branch 'main' agent { label 'web' }
} options { skipDefaultCheckout() }
steps { steps {
sh '''cd docs unstash 'site'
dotnet tool restore sh 'rm -rf /var/www/tinylifegame/*'
dotnet docfx''' sh 'cp -r web/_site/. /var/www/tinylifegame/'
unstash 'docs'
sh 'rm -rf /var/www/tinylifedocs/*' sh 'rm -rf /var/www/tinylifedocs/*'
sh 'cp -r docs/_site/. /var/www/tinylifedocs/' sh 'cp -r docs/_site/. /var/www/tinylifedocs/'
} }