This commit is contained in:
Nishi 2026-02-04 00:02:21 +09:00
commit 4a092e71d2
Signed by: nishi
GPG key ID: 27EF69B208EB9343

10
Jenkinsfile vendored
View file

@ -9,6 +9,11 @@ pipeline {
sh("rm -rf /var/www/milsko-doxygen")
sh("mv doxygen/html /var/www/milsko-doxygen")
}
post {
always {
notifyDiscord()
}
}
}
stage("Build") {
parallel {
@ -34,6 +39,11 @@ pipeline {
}
}
}
post {
always {
notifyDiscord()
}
}
}
}
}