milsko/Jenkinsfile

17 lines
194 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:27:27 +09:00
sh("echo Testing testing...")
2026-02-03 23:24:34 +09:00
}
post {
always {
notifyDiscord()
}
}
}
}
}