milsko/Jenkinsfile

14 lines
214 B
Text
Raw Normal View History

2026-02-03 23:24:34 +09:00
pipeline {
agent {
label "built-in"
}
stages {
stage("Build document") {
steps {
2026-02-03 23:43:08 +09:00
sh("doxygen")
sh("rm -rf /var/www/milsko-doxygen")
sh("mv doxygen/html /var/www/milsko-doxygen")
2026-02-03 23:24:34 +09:00
}
}
}
}