From da23c7a58a44b6bebc191746a94258878019d978 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 28 Feb 2025 13:32:52 +0200 Subject: [PATCH] Simplifying testing --- Jenkinsfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 60545af..8f76df7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') {