feat add build

This commit is contained in:
tqcq 2024-07-19 00:56:29 +08:00 committed by tqcq
parent fb5a1e36fc
commit 7ece925875

4
Jenkinsfile vendored
View File

@ -10,9 +10,9 @@ pipeline {
sh 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON' sh 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON'
} }
} }
stage('Test'){ stage('Build'){
steps { steps {
sh 'echo Test' sh 'cmake --build --target all -- -j`nproc --ignore=4`'
} }
} }
stage('Deploy') { stage('Deploy') {