fixes bugs

This commit is contained in:
Eyck-Alexander Jentzsch 2024-07-11 10:19:56 +02:00
parent 21ca5aee7a
commit 99e36acbae
1 changed files with 3 additions and 2 deletions

5
Jenkinsfile vendored
View File

@ -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'