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