Skip to content
This repository was archived by the owner on Dec 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,16 @@ tasks:
image: quay.io/mongodb/community-operator-e2e:${version_id}
image_type: e2e

- name: build_testrunner_image
priority: 60
exec_timeout_secs: 600
commands:
- func: clone
- func: build_and_push_image
vars:
image: quay.io/mongodb/community-operator-testrunner:${version_id}
image_type: testrunner

- name: unit_tests
commands:
- func: clone
Expand Down Expand Up @@ -157,6 +167,8 @@ buildvariants:
variant: init_test_run
- name: build_e2e_image
variant: init_test_run
- name: build_testrunner_image
variant: init_test_run
tasks:
- name: e2e_test_replica_set
- name: e2e_test_replica_set_readiness_probe
Expand All @@ -169,3 +181,4 @@ buildvariants:
tasks:
- name: build_operator_image
- name: build_e2e_image
- name: build_testrunner_image
2 changes: 1 addition & 1 deletion scripts/ci/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kubectl apply -f deploy/testrunner
kubectl run test-runner --generator=run-pod/v1 \
--restart=Never \
--image-pull-policy=Always \
--image=quay.io/chatton/test-runner \
--image=quay.io/mongodb/community-operator-testrunner:${version_id} \
--serviceaccount=test-runner \
--command -- ./runner --operatorImage quay.io/mongodb/community-operator-dev:${version_id} --testImage quay.io/mongodb/community-operator-e2e:${version_id} --test=${test}

Expand Down