In the v3.0 and v3.0.11 branches of the mongodb/mongo repo, etc/evergreen.yml file has some s3.put and s3.get functions using mongodb-mongo-master folder in the mciuploads bucket.
It should be using mongodb-mongo-v3.0 instead.
- command: s3.put
|
params:
|
aws_key: ${aws_key}
|
aws_secret: ${aws_secret}
|
local_file: src/distsrc.${ext|tgz}
|
remote_file: mongodb-mongo-master/${build_variant}/${revision}/sources/mongo-src-${build_id}.${ext|tgz}
|
bucket: mciuploads
|
permissions: public-read
|
content_type: ${content_type|application/x-gzip}
|
display_name: Source tarball
|
# We only need to upload the source tarball from one of the build variants
|
# because it should be the same everywhere, so just use linux-64/windows-64-2k8.
|
build_variants: [ linux-64, windows-64-2k8 ]
|
- command: s3.get
|
params:
|
aws_key: ${aws_key}
|
aws_secret: ${aws_secret}
|
remote_file: mongodb-mongo-master/${build_variant}/${revision}/sources/mongo-src-${build_id}.${ext|tgz}
|
bucket: mciuploads
|
local_file: src/distsrc.${ext|tgz}
|
build_variants: [ linux-64, windows-64-2k8 ]
|