Skip to content

Commit

Permalink
[CI] Run all Fstages in parallel to improve runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnoel committed Jan 23, 2024
1 parent 4fc99b4 commit 0e66e63
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions docker/jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pipeline {
booleanParam(name: 'end2end', defaultValue: false, description: 'Run end2end tests')
}
stages {
stage('Sanity Tests') {
stage('Run Tests') {
parallel {
stage('Sanity - Build Hardware') {
when {
Expand Down Expand Up @@ -76,7 +76,7 @@ pipeline {
}
}
}
stage('Sanity - fpgadataflow Tests') {
stage('fpgadataflow Tests') {
when {
expression { params['fpgadataflow'] }
}
Expand Down Expand Up @@ -107,10 +107,6 @@ pipeline {
}
}
}
}
}
stage('End2end - Build Hardware') {
parallel {
stage('End2end') {
when {
expression { params['end2end'] }
Expand Down

0 comments on commit 0e66e63

Please sign in to comment.