mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 22:06:21 +00:00
11 lines
134 B
Groovy
11 lines
134 B
Groovy
node('linux') {
|
|
stage('Clone') {
|
|
env.GIT_LFS_SKIP_SMUDGE = 1
|
|
checkout scm
|
|
}
|
|
stage('Build') {
|
|
sh 'echo "nproc:"; nproc'
|
|
}
|
|
}
|
|
|