mirror of
https://github.com/mii443/ncb-tts-r2.git
synced 2025-08-22 16:15:29 +00:00
16 lines
193 B
Groovy
16 lines
193 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
echo "Build start."
|
|
}
|
|
|
|
post {
|
|
always {
|
|
echo "Build end."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |