mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-25 05:49:26 +00:00
10 lines
104 B
Groovy
10 lines
104 B
Groovy
node('linux') {
|
|
stage('Clone') {
|
|
checkout scm
|
|
}
|
|
stage('Build') {
|
|
sh 'echo "nproc:"; nproc'
|
|
}
|
|
}
|
|
|