File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ jobs:
339339 export IMAGE_TAG=$([[ "$CIRCLE_BRANCH" == "staging" ]] && echo "staging-candidate" || echo "discardable") &&
340340 export KUBERNETES_MONITOR_IMAGE_NAME_AND_TAG=snyk/kubernetes-monitor:${IMAGE_TAG}-${CIRCLE_SHA1} &&
341341 docker pull ${KUBERNETES_MONITOR_IMAGE_NAME_AND_TAG} &&
342- .circleci/do-exclusively --branch staging --job ${CIRCLE_JOB} npm run test:integration:openshift4
342+ .circleci/do-exclusively --branch chore/e2e-operator --job ${CIRCLE_JOB} npm run test:integration:openshift4
343343 - run :
344344 name : Notify Slack on failure
345345 command : |
@@ -439,6 +439,37 @@ jobs:
439439
440440workflows :
441441 version : 2
442+ # TODO: REMOVE THIS, ONLY TESTING :)
443+ TEST :
444+ jobs :
445+ - build_image :
446+ filters :
447+ branches :
448+ only :
449+ - chore/e2e-operator
450+ - build_operator :
451+ filters :
452+ branches :
453+ only :
454+ - chore/e2e-operator
455+ - upload_operator :
456+ filters :
457+ branches :
458+ only :
459+ - chore/e2e-operator
460+ requires :
461+ - build_image
462+ - build_operator
463+ - openshift4_integration_tests :
464+ filters :
465+ branches :
466+ only :
467+ - chore/e2e-operator
468+ requires :
469+ - build_image
470+ - build_operator
471+ - upload_operator
472+
442473 PR_TO_STAGING :
443474 jobs :
444475 - build_image :
You can’t perform that action at this time.
0 commit comments