Skip to content

Commit 06f27c9

Browse files
committed
windows fix
1 parent 15810ba commit 06f27c9

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -127,26 +127,6 @@ functions:
127127
include:
128128
- "./**.core"
129129
- "./**.mdmp" # Windows: minidumps
130-
- command: shell.exec
131-
params:
132-
script: |
133-
. src/.evergreen/scripts/env.sh
134-
set -o xtrace
135-
mkdir out_dir
136-
find $MONGO_ORCHESTRATION_HOME -name \*.log -exec sh -c 'x="{}"; mv $x $PWD/out_dir/$(basename $(dirname $x))_$(basename $x)' \;
137-
tar zcvf mongodb-logs.tar.gz -C out_dir/ .
138-
rm -rf out_dir
139-
- command: s3.put
140-
params:
141-
aws_key: ${AWS_ACCESS_KEY_ID}
142-
aws_secret: ${AWS_SECRET_ACCESS_KEY}
143-
aws_session_token: ${AWS_SESSION_TOKEN}
144-
local_file: mongodb-logs.tar.gz
145-
remote_file: ${build_variant}/${revision}/${version_id}/${build_id}/logs/${task_id}-${execution}-mongodb-logs.tar.gz
146-
bucket: ${bucket_name}
147-
permissions: public-read
148-
content_type: ${content_type|application/x-gzip}
149-
display_name: "mongodb-logs.tar.gz"
150130
- command: s3.put
151131
params:
152132
aws_key: ${AWS_ACCESS_KEY_ID}

.evergreen/scripts/setup_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def handle_test_env() -> None:
372372
if sub_test_name in ["ec2", "web_identity"] and PLATFORM == "darwin":
373373
write_env("SKIP_TESTS")
374374
return
375-
if sub_test_name == "ec2" and PLATFORM != "linux":
375+
if sub_test_name == "ecs" and PLATFORM != "linux":
376376
write_env("SKIP_TESTS")
377377
return
378378
auth_aws_dir = f"{DRIVERS_TOOLS}/.evergreen/auth_aws"

0 commit comments

Comments
 (0)