build: Docs bouwen en publiceren
This commit is contained in:
Vendored
+13
@@ -14,6 +14,13 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Build docs') {
|
||||||
|
steps {
|
||||||
|
sh 'cargo doc'
|
||||||
|
archiveArtifacts artifacts: 'target/doc'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Deploy') {
|
stage('Deploy') {
|
||||||
steps {
|
steps {
|
||||||
sh 'rm -r /var/www/zwietering.eu/projects/double-pendulum'
|
sh 'rm -r /var/www/zwietering.eu/projects/double-pendulum'
|
||||||
@@ -21,6 +28,12 @@ pipeline {
|
|||||||
sh 'cp -r ./pkg/* /var/www/zwietering.eu/projects/double-pendulum'
|
sh 'cp -r ./pkg/* /var/www/zwietering.eu/projects/double-pendulum'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('Deploy docs') {
|
||||||
|
steps {
|
||||||
|
sh 'cp -r ./target/doc/ /var/www/zwietering.eu/projects/double-pendulum'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
post {
|
post {
|
||||||
|
|||||||
Reference in New Issue
Block a user