Skip to content

Commit

Permalink
Update Jenkinsfile with time limit
Browse files Browse the repository at this point in the history
  • Loading branch information
victoria-cherkas authored Sep 7, 2023
1 parent 11322ff commit 9084933
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions testsuite/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ pipeline {
}
stages {
stage('setup miniconda') {
options {
timeout(time: 10, unit: 'SECONDS')
}
environment {
PATH = "$WORKSPACE/miniconda_$NODE_NAME/bin:$PATH"
}
Expand All @@ -72,6 +75,9 @@ pipeline {
}
}
stage('run tests') {
options {
timeout(time: 10, unit: 'MINUTES')
}
environment {
PATH = "$WORKSPACE/miniconda_${NODE_NAME}/bin:$PATH"
}
Expand Down

0 comments on commit 9084933

Please sign in to comment.