Skip to content

Commit

Permalink
use variant.name
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Dec 20, 2024
1 parent 98a700b commit 80e4b93
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,16 +214,16 @@ functions:
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: src/nyc-output-tests_linux-n20-cli_repl.tgz
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-tests_linux-n20-cli_repl.tgz
local_file: src/nyc-output-linux-n20-cli_repl.tgz
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-linux-n20-cli_repl.tgz
bucket: mciuploads
- command: shell.exec
params:
working_dir: src
shell: bash
script: |
set -e
tar xvzf nyc-output-tests_linux-n20-cli_repl.tgz
tar xvzf nyc-output-linux-n20-cli_repl.tgz
- command: s3.get
params:
aws_key: ${aws_key}
Expand Down
8 changes: 4 additions & 4 deletions .evergreen/evergreen.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -315,22 +315,22 @@ functions:

check_coverage:
<% for (let [variant, unitTest] of UNIT_TESTS_AND_VARIANTS) {
let buildVariant = variant.id;
let buildVariant = variant.name;
%>
- command: s3.get
params:
aws_key: ${aws_key}
aws_secret: ${aws_secret}
local_file: src/nyc-output-tests_<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-tests_<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
local_file: src/nyc-output-<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
remote_file: mongosh/binaries/${revision}/${revision_order_id}/nyc-output-<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
bucket: mciuploads
- command: shell.exec
params:
working_dir: src
shell: bash
script: |
set -e
tar xvzf nyc-output-tests_<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
tar xvzf nyc-output-<% out(buildVariant) %>-<% out(unitTest.id) %>.tgz
<% } %>
- command: shell.exec
params:
Expand Down

0 comments on commit 80e4b93

Please sign in to comment.