diff --git a/Jenkinsfile b/Jenkinsfile index ed5eb75..70983b9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,9 +10,9 @@ pipeline { sh 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON' } } - stage('Test'){ + stage('Build'){ steps { - sh 'echo Test' + sh 'cmake --build --target all -- -j`nproc --ignore=4`' } } stage('Deploy') {