Add Jenkins file

This commit is contained in:
Sylvain Tricot 2025-07-04 22:01:26 +02:00
parent e5c275c3d9
commit cb4b683f08
1 changed files with 19 additions and 0 deletions

19
Jenkinsfile vendored Normal file
View File

@ -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/'
}
}
}
}