fixes bugs
This commit is contained in:
parent
21ca5aee7a
commit
99e36acbae
|
@ -16,6 +16,7 @@ void checkout_project(String repoUrl, String branch = 'develop') {
|
||||||
}
|
}
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage("Checkout TGC-Compliance and TGC-GEN"){
|
stage("Checkout TGC-Compliance and TGC-GEN"){
|
||||||
steps {
|
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' }}
|
agent {docker { image 'ubuntu-riscv' }}
|
||||||
steps {
|
steps {
|
||||||
sh 'TGC-GEN/scripts/generate_all.sh -o dbt-rise-tgc'
|
sh 'TGC-GEN/scripts/generate_all.sh -o dbt-rise-tgc'
|
||||||
|
@ -36,7 +37,7 @@ pipeline {
|
||||||
sh 'cmake --build build -j'
|
sh 'cmake --build build -j'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage{
|
stage("Run test suite") {
|
||||||
agent {
|
agent {
|
||||||
docker {
|
docker {
|
||||||
image 'git.minres.com/tooling/riscof_sail:latest'
|
image 'git.minres.com/tooling/riscof_sail:latest'
|
||||||
|
|
Loading…
Reference in New Issue