Simplifying testing

This commit is contained in:
retropikzel 2025-02-28 13:32:52 +02:00
parent edd0f15bfb
commit da23c7a58a
1 changed files with 19 additions and 0 deletions

19
Jenkinsfile vendored
View File

@ -12,6 +12,25 @@ pipeline {
}
stages {
stage('Build test libraries') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make libstest.so libtest.a'
}
}
}
stage('Build Chibi libraries') {
agent {
dockerfile {
filename 'dockerfiles/build-chibi'
}
}
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh 'make cbibi'
}
}
}
stage('chibi script') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {