diff --git a/Jenkinsfile b/Jenkinsfile index dab36e4..13b44d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,7 +9,7 @@ pipeline { } steps { - sh 'mkdir build && cd build && qmake .. && make ' + sh 'mkdir build && cd build && cmake .. && make -j' archiveArtifacts(artifacts: 'build/src/spark-store', allowEmptyArchive: true, defaultExcludes: true) } } @@ -30,4 +30,4 @@ pipeline { } } -} \ No newline at end of file +}