Skip to content

Commit f0df6f4

Browse files
authored
fix periodic teardowns (#348)
# Summary - when refactoring and removing daily builds we also removed parts of teardown by accident ## Proof of Work - periodic getting triggered: https://spruce.mongodb.com/version/689dc0de0e8148000791e683/tasks?sorts=STATUS%3AASC%3BBASE_STATUS%3ADESC ## Checklist - [ ] Have you linked a jira ticket and/or is the ticket in the title? - [ ] Have you checked whether your jira ticket required DOCSP changes? - [ ] Have you added changelog file? - use `skip-changelog` label if not needed - refer to [Changelog files and Release Notes](https://github.com/mongodb/mongodb-kubernetes/blob/master/CONTRIBUTING.md#changelog-files-and-release-notes) section in CONTRIBUTING.md for more details
1 parent 0786a90 commit f0df6f4

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

.evergreen-functions.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ functions:
336336
- command: shell.exec
337337
type: setup
338338
params:
339+
continue_on_err: true
339340
shell: bash
340341
working_dir: src/github.com/mongodb/mongodb-kubernetes
341342
script: |
@@ -420,6 +421,7 @@ functions:
420421
upload_e2e_logs:
421422
- command: s3.put
422423
params:
424+
continue_on_err: true
423425
aws_key: ${enterprise_aws_access_key_id}
424426
aws_secret: ${enterprise_aws_secret_access_key}
425427
local_files_include_filter:

.evergreen-periodic-builds.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,15 @@ variables:
1919
- func: switch_context
2020

2121
tasks:
22+
- name: periodic_teardown_aws
23+
commands:
24+
- func: cleanup_aws
25+
26+
- name: periodic_teardown_cloudqa
27+
commands:
28+
- func: teardown_cloud_qa_all
29+
30+
task_groups:
2231
- name: periodic_teardown_task_group
2332
<<: *setup_group
2433
tasks:

.evergreen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ variables:
117117
- func: setup_cloud_qa
118118
teardown_task_can_fail_task: true
119119
teardown_task:
120+
- func: teardown_cloud_qa
120121
- func: upload_e2e_logs
121122
- func: teardown_kubernetes_environment
122-
- func: teardown_cloud_qa
123123

124124
- &setup_and_teardown_task
125125
setup_task_can_fail_task: true

0 commit comments

Comments
 (0)