nimbus-eth2/Jenkinsfile

10 lines
104 B
Groovy

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