nimbus-eth2/Jenkinsfile

11 lines
134 B
Plaintext
Raw Normal View History

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