Skip to content

Commit

Permalink
tests: reinstate test order
Browse files Browse the repository at this point in the history
  • Loading branch information
tobybellwood committed Jul 25, 2024
1 parent b05b54f commit e4f829c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ pipeline {
steps {
sh script: "make -j$NPROC local-dev/k3d", label: "Configure k3d"
sh script: "./local-dev/k3d cluster delete --all", label: "Delete any remnant clusters"
sh script: "make -j$NPROC k3d/test TESTS=[drush] BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Setup cluster and run nginx smoketest"
sh script: "make -j$NPROC k3d/test TESTS=[nginx] BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Setup cluster and run nginx smoketest"
sh script: "pkill -f './local-dev/stern'", label: "Closing off test-suite-0 log after test completion"
script {
skipRemainingStages = true
echo "Drush only test, no further tests."
}
// script {
// skipRemainingStages = true
// echo "single test only, no further tests."
// }
}
}
stage ('collect logs') {
Expand Down Expand Up @@ -183,7 +183,7 @@ pipeline {
stage ('3: run third test suite') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh script: "make -j$NPROC k3d/retest TESTS=[gitlab,github,bitbucket,drush] BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Running third test suite on k3d cluster"
sh script: "make -j$NPROC k3d/retest TESTS=[gitlab,github,bitbucket,python,drush] BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Running third test suite on k3d cluster"
}
sh script: "pkill -f './local-dev/stern'", label: "Closing off test-suite-3 log after test completion"
}
Expand Down

0 comments on commit e4f829c

Please sign in to comment.