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 c365a76482 - Show all commits

11
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
}
stages {
stage("Checkout") {
stage('Checkout') {
steps {
cleanWs()
checkout scm
@ -27,9 +27,14 @@ pipeline {
sh 'cmake --build build --target all -- -j`nproc --ignore=4`'
}
}
stage('Deploy') {
stage('Test') {
steps {
sh 'echo publish'
sh 'cd build && ctest -j `nproc --ignore=4`'
}
}
stage('Benchmark') {
steps {
sh 'cd build && ./bin/tile_bm_all'
}
}
}