Skip to content

Commit

Permalink
test: remove node version from tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
durran committed Sep 4, 2024
1 parent 93164fe commit 4eef0c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ tasks:
vars:
TS_VERSION: "next"
TRY_COMPILING_LIBRARY: "false"
- name: run-granular-benchmarks-node-18
- name: run-granular-benchmarks
commands:
- func: fetch source
vars:
Expand All @@ -246,7 +246,7 @@ tasks:
- command: perf.send
params:
file: src/test/bench/etc/resultsCollectedMeans.json
- name: run-spec-benchmarks-node-18
- name: run-spec-benchmarks
commands:
- func: fetch source
vars:
Expand Down Expand Up @@ -298,5 +298,5 @@ buildvariants:
display_name: RHEL 9.0 perf
run_on: rhel90-dbx-perf-large
tasks:
- run-granular-benchmarks-node-18
- run-spec-benchmarks-node-18
- run-granular-benchmarks
- run-spec-benchmarks
1 change: 1 addition & 0 deletions test/bench/etc/run_granular_benchmarks.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const DOCUMENT_ROOT = path.resolve(`${__dirname}/../documents`);
const args = JSON.stringify(entry.info.args);
const key = `${name}:${args}`;

console.log(entry.info);
if (set.has(key)) throw new Error(`Found a duplicate testName:Option pair: ${key}`);
set.add(key);
}
Expand Down

0 comments on commit 4eef0c4

Please sign in to comment.