Jenkinsfile

This commit is contained in:
Ștefan Talpalaru 2019-11-11 22:16:17 +01:00
parent d457dfee81
commit 93d501cd43
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
node('linux') {
stage('Clone') {
env.GIT_LFS_SKIP_SMUDGE = 1
checkout scm
}
stage('Build') {
sh 'echo "nproc:"; nproc'
}
}