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 128fbc4983 - Show all commits

10
Jenkinsfile vendored
View File

@ -4,7 +4,17 @@ pipeline {
image 'tqcq/cross'
}
}
options {
skipDefaultCheckout(true)
}
stages {
stage("Checkout") {
cleanWs()
checkout scm
}
stage('Configure') {
steps {
sh 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Debug -DTILE_BUILD_TESTS=ON -DTILE_BUILD_BENCHMARKS=ON'