nimbus-eth2/Jenkinsfile

10 lines
104 B
Plaintext
Raw Normal View History

2019-11-11 21:16:17 +00:00
node('linux') {
stage('Clone') {
checkout scm
}
stage('Build') {
sh 'echo "nproc:"; nproc'
}
}