This commit is contained in:
parent
99e36acbae
commit
5c31d06a58
|
@ -18,6 +18,9 @@ void checkout_project(String repoUrl, String branch = 'develop') {
|
|||
pipeline {
|
||||
agent any
|
||||
stages {
|
||||
stage("Checkout and build"){
|
||||
agent {docker { image 'ubuntu-riscv' }}
|
||||
stages{
|
||||
stage("Checkout TGC-Compliance and TGC-GEN"){
|
||||
steps {
|
||||
dir("TGC-COMPLIANCE"){
|
||||
|
@ -29,7 +32,6 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage("Generate cores and build TGC-ISS"){
|
||||
agent {docker { image 'ubuntu-riscv' }}
|
||||
steps {
|
||||
sh 'TGC-GEN/scripts/generate_all.sh -o dbt-rise-tgc'
|
||||
sh 'conan profile new default --detect --force'
|
||||
|
@ -37,6 +39,8 @@ pipeline {
|
|||
sh 'cmake --build build -j'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage("Run test suite") {
|
||||
agent {
|
||||
docker {
|
||||
|
|
Loading…
Reference in New Issue