Add Jenkins file
This commit is contained in:
parent
e5c275c3d9
commit
cb4b683f08
|
@ -0,0 +1,19 @@
|
||||||
|
pipeline {
|
||||||
|
agent {label 'msspec_agent_amd64'}
|
||||||
|
stages {
|
||||||
|
stage('Building documentation...') {
|
||||||
|
steps {
|
||||||
|
sh 'ls -als'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Syncing website...') {
|
||||||
|
steps {
|
||||||
|
echo 'Syncing website only in main branch, not here in devel branch...'
|
||||||
|
// sh 'rm -rf $HOME/www/*'
|
||||||
|
// sh 'cp -a ./doc/build/html/* $HOME/www/'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue