parent
9044a9948d
commit
65879a7e8b
@ -0,0 +1,25 @@
|
|||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Cloning git sumbodules') {
|
||||||
|
steps {
|
||||||
|
sh 'git submodule update --init --recursive'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Compile') {
|
||||||
|
steps {
|
||||||
|
sh 'cmake .'
|
||||||
|
sh 'make -j 4'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Run') {
|
||||||
|
steps {
|
||||||
|
sh 'performance_measuring'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue