summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Streets <jonathan.streets@10gen.com>2022-02-11 12:28:25 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-02-11 19:32:01 +0000
commitb1b420ce1133365c68565337521c196d43dadbf4 (patch)
treee96d0a01d1bf75011115ddc7d285111318eff151
parentad79db6796c06bf6b477dcb543621c209e15bfd2 (diff)
downloadmongo-b1b420ce1133365c68565337521c196d43dadbf4.tar.gz
SERVER-63432 use s3put to move debugsymbolsr5.2.1-rc0r5.2.1
-rw-r--r--etc/evergreen.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 90294bc5953..28058ba43a6 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -6314,15 +6314,16 @@ tasks:
build_variants: [rhel70, windows]
# Put the debug symbols
+ # push directly to repo due to limitations in file size SERVER-63432
- command: s3.put
params:
aws_secret: ${aws_secret}
aws_key: ${aws_key}
permissions: public-read
local_file: src/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}
- bucket: build-push-testing
+ bucket: ${push_bucket}
content_type: ${content_type|application/gzip}
- remote_file: ${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}
+ remote_file: ${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}
optional: true
# Put the binaries tarball signature
@@ -6732,10 +6733,7 @@ tasks:
aws_secret: ${aws_secret}
optional: true
s3_copy_files:
- #Debug Symbols
- - {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}', 'bucket': 'build-push-testing'},
- 'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}', 'bucket': '${push_bucket}'}}
-
+ #Debug Symbols temporarily removed - see SERVER-63432 - need to s3.push debugsymbols due to size limit
#Debug Symbols Signature
- {'source': {'path': '${push_path}-STAGE/${push_name}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}-${task_id}.${ext|tgz}.sig', 'bucket': 'build-push-testing'},
'destination': {'path': '${push_path}/mongodb-${push_name}-${push_arch}-debugsymbols-${suffix}.${ext|tgz}.sig', 'bucket': '${push_bucket}'}}