10 lines
127 B
Groovy
10 lines
127 B
Groovy
node {
|
|
stage('Checkout') {
|
|
checkout
|
|
}
|
|
|
|
stage('Build') {
|
|
sh("make")
|
|
}
|
|
}
|