adds interp test
Run architectural test suite on backends / Build ISS, Setup TGC-COMPLIANCE, Run tests on backends (push) Has been cancelled Details

This commit is contained in:
Eyck-Alexander Jentzsch 2024-05-22 15:33:40 +02:00
parent aa69088189
commit 558d5849a6
1 changed files with 13 additions and 0 deletions

13
Jenkinsfile vendored
View File

@ -34,6 +34,19 @@ pipeline {
'''
}
}
stage("Checkout TGC-Compliance"){
steps {
checkout_project("https://git.minres.com/TGFS/TGC-COMPLIANCE.git", "master")
}
}
stage("Test backends"){
parallel {
stage("Test interp") {
sh "mkdir interp"
sh "python3 run_act.py -core TGC5C -sim build/dbt-rise-tgc/tgc-sim -w interp --dockerless --backend interp"
}
}
}
}
}