different agents for different stages
This commit is contained in:
parent
c99a7982b7
commit
21ca5aee7a
|
@ -16,12 +16,6 @@ void checkout_project(String repoUrl, String branch = 'develop') {
|
||||||
}
|
}
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
|
||||||
docker {
|
|
||||||
image 'git.minres.com/tooling/riscof_sail:latest'
|
|
||||||
args '-e CONAN_USER_HOME=/var/jenkins_home/workspace/riscof_sail'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stages {
|
stages {
|
||||||
stage("Checkout TGC-Compliance and TGC-GEN"){
|
stage("Checkout TGC-Compliance and TGC-GEN"){
|
||||||
steps {
|
steps {
|
||||||
|
@ -33,19 +27,23 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("generate cores "){
|
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'
|
||||||
}
|
|
||||||
}
|
|
||||||
stage("build TGC-ISS"){
|
|
||||||
steps {
|
|
||||||
sh 'conan profile new default --detect --force'
|
sh 'conan profile new default --detect --force'
|
||||||
sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON'
|
sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON'
|
||||||
sh 'cmake --build build -j'
|
sh 'cmake --build build -j'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage{
|
||||||
|
agent {
|
||||||
|
docker {
|
||||||
|
image 'git.minres.com/tooling/riscof_sail:latest'
|
||||||
|
args ' -e CONAN_USER_HOME=/var/jenkins_home/workspace/riscof_sail'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
stage('ACT 32bit') {
|
stage('ACT 32bit') {
|
||||||
matrix {
|
matrix {
|
||||||
axes {
|
axes {
|
||||||
|
@ -92,3 +90,5 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue