From 99e36acbae9580f134c850963153655fc0bbaeaa Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Thu, 11 Jul 2024 10:19:56 +0200 Subject: [PATCH] fixes bugs --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ff20725..51c85d8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,6 +16,7 @@ void checkout_project(String repoUrl, String branch = 'develop') { } pipeline { + agent any stages { stage("Checkout TGC-Compliance and TGC-GEN"){ steps { @@ -27,7 +28,7 @@ pipeline { } } } - stage("generate cores and build TGC-ISS"){ + stage("Generate cores and build TGC-ISS"){ agent {docker { image 'ubuntu-riscv' }} steps { sh 'TGC-GEN/scripts/generate_all.sh -o dbt-rise-tgc' @@ -36,7 +37,7 @@ pipeline { sh 'cmake --build build -j' } } - stage{ + stage("Run test suite") { agent { docker { image 'git.minres.com/tooling/riscof_sail:latest'