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