Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overrides check #255

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ pipeline {
}
}
stage('Unit Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
// Empty config is sometimes needed in unit tests
sh 'echo "# Empty config" > ~/.spinnaker.cfg'
Expand All @@ -196,6 +199,9 @@ pipeline {
}
}
stage('Run sPyNNaker Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand All @@ -204,6 +210,9 @@ pipeline {
}
}
stage('Run GFE Integeration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_gfe_config()
Expand All @@ -213,6 +222,9 @@ pipeline {
}
}
stage('Run IntroLab Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand All @@ -222,6 +234,9 @@ pipeline {
}
}
stage('Run PyNN8Examples Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand All @@ -231,6 +246,9 @@ pipeline {
}
}
stage('Run sPyNNaker8NewModelTemplate Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand All @@ -240,6 +258,9 @@ pipeline {
}
}
stage('Run microcircuit_model Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand All @@ -248,6 +269,9 @@ pipeline {
}
}
stage('Run SpiNNGym Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand All @@ -257,6 +281,9 @@ pipeline {
}
}
stage('Run MarkovChainMonteCarlo Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_gfe_config()
Expand All @@ -266,6 +293,9 @@ pipeline {
}
}
stage('Run SpiNNaker_PDP2 Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_gfe_config()
Expand All @@ -275,6 +305,9 @@ pipeline {
}
}
stage('Run Visualiser Integration Tests') {
environment {
TYPE_OVERRIDES = "true"
}
steps {
catchError(stageResult: 'FAILURE', catchInterruptions: false) {
create_spynnaker_config()
Expand Down