10 lines
104 B
Plaintext
10 lines
104 B
Plaintext
|
node('linux') {
|
||
|
stage('Clone') {
|
||
|
checkout scm
|
||
|
}
|
||
|
stage('Build') {
|
||
|
sh 'echo "nproc:"; nproc'
|
||
|
}
|
||
|
}
|
||
|
|