diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 167c28cc..12c4bdf8 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { steps { dir(BUILDDIR_Q7S) { sh 'cmake -DTGT_BSP="arm/q7s" -DCMAKE_BUILD_TYPE=Debug ..' - sh 'cmake --build . -j6' + sh 'cmake --build . -j8' } } } @@ -30,7 +30,7 @@ pipeline { steps { dir(BUILDDIR_Q7S_EM) { sh 'cmake -DTGT_BSP="arm/q7s" -DEIVE_Q7S_EM=ON -DCMAKE_BUILD_TYPE=Debug ..' - sh 'cmake --build . -j6' + sh 'cmake --build . -j8' } } } @@ -38,7 +38,7 @@ pipeline { steps { dir(BUILDDIR_LINUX) { sh 'cmake ..' - sh 'cmake --build . -j6' + sh 'cmake --build . -j8' sh './eive-unittest' } }