nimbus-eth2/Jenkinsfile
2019-11-22 14:15:04 +00:00

10 lines
104 B
Groovy

node('linux') {
stage('Clone') {
checkout scm
}
stage('Build') {
sh 'echo "nproc:"; nproc'
}
}