testing jenkins

This commit is contained in:
Nishi 2026-02-03 23:24:34 +09:00
commit 5bc06dc851
Signed by: nishi
GPG key ID: 27EF69B208EB9343

16
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,16 @@
pipeline {
agent {
label "built-in"
}
stages {
stage("Build document") {
steps {
}
post {
always {
notifyDiscord()
}
}
}
}
}