Files
ncb-tts-r2/Jenkinsfile
2022-08-05 10:36:04 +09:00

16 lines
193 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Build start."
}
post {
always {
echo "Build end."
}
}
}
}
}