feat/support_fiber #6

Merged
tqcq merged 52 commits from feat/support_fiber into master 2024-08-11 13:03:04 +08:00
Showing only changes of commit 89d0b51491 - Show all commits

18
Jenkinsfile vendored
View File

@ -1,10 +1,5 @@
pipeline { pipeline {
agent { agent any
docker {
image 'tqcq/cross'
}
}
options { options {
skipDefaultCheckout(true) skipDefaultCheckout(true)
} }
@ -18,11 +13,22 @@ pipeline {
} }
stage('Configure') { stage('Configure') {
agent {
docker {
image 'tqcq/cross'
}
}
steps { steps {
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('Build'){ stage('Build'){
agent {
docker {
image 'tqcq/cross'
}
}
steps { steps {
sh 'cmake --build --target all -- -j`nproc --ignore=4`' sh 'cmake --build --target all -- -j`nproc --ignore=4`'
} }