enables all cores in Jenkinsfile

This commit is contained in:
Eyck-Alexander Jentzsch 2024-07-18 14:32:59 +02:00
parent 497b1d33d4
commit 1fee44c084
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -36,7 +36,7 @@ pipeline {
stage("Generate cores and build TGC-ISS"){
steps {
sh '''
for core in TGC5D TGC5E; do #TGC5A TGC5B
for core in TGC5A TGC5B TGC5D TGC5E; do
for backend in interp llvm tcc asmjit; do
TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-GEN/CoreDSL/${core}.core_desc
done
@ -67,7 +67,7 @@ pipeline {
axes {
axis {
name 'CORE'
values 'TGC5C', 'TGC5D', 'TGC5E' // TGC5A, 'TGC5B',
values 'TGC5A', 'TGC5B','TGC5C', 'TGC5D', 'TGC5E'
}
axis {
name 'BACKEND'