Skip to content

Commit 80e4b93

Browse files
committed
use variant.name
1 parent 98a700b commit 80e4b93

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.evergreen.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,16 +214,16 @@ functions:
214214
params:
215215
aws_key: ${aws_key}
216216
aws_secret: ${aws_secret}
217-
local_file: src/nyc-output-tests_linux-n20-cli_repl.tgz
218-
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-tests_linux-n20-cli_repl.tgz
217+
local_file: src/nyc-output-linux-n20-cli_repl.tgz
218+
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-linux-n20-cli_repl.tgz
219219
bucket: mciuploads
220220
- command: shell.exec
221221
params:
222222
working_dir: src
223223
shell: bash
224224
script: |
225225
set -e
226-
tar xvzf nyc-output-tests_linux-n20-cli_repl.tgz
226+
tar xvzf nyc-output-linux-n20-cli_repl.tgz
227227
- command: s3.get
228228
params:
229229
aws_key: ${aws_key}

.evergreen/evergreen.yml.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,22 +315,22 @@ functions:
315315

316316
check_coverage:
317317
<% for (let [variant, unitTest] of UNIT_TESTS_AND_VARIANTS) {
318-
let buildVariant = variant.id;
318+
let buildVariant = variant.name;
319319
%>
320320
- command: s3.get
321321
params:
322322
aws_key: ${aws_key}
323323
aws_secret: ${aws_secret}
324-
local_file: src/nyc-output-tests_<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
325-
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-tests_<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
324+
local_file: src/nyc-output-<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
325+
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
326326
bucket: mciuploads
327327
- command: shell.exec
328328
params:
329329
working_dir: src
330330
shell: bash
331331
script: |
332332
set -e
333-
tar xvzf nyc-output-tests_<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
333+
tar xvzf nyc-output-<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
334334
<% } %>
335335
- command: shell.exec
336336
params:

0 commit comments

Comments
 (0)