Skip to content

Commit

Permalink
chore(NODE-XXXX): make benchmarks run current code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nbbeeken committed Aug 28, 2024
1 parent d70db82 commit 2ab0aec
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .evergreen/run-granular-benchmarks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

source "${PROJECT_DIRECTORY}/.evergreen/init-node-and-npm-env.sh"
set -o xtrace

export LIBRARY=$PWD

if ! npm run build; then exit 1; fi

npm run check:spec-bench

WARMUP=$WARMUP
ITERATIONS=$ITERATIONS

Expand Down
7 changes: 7 additions & 0 deletions .evergreen/run-spec-benchmarks.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/usr/bin/env bash


source "${PROJECT_DIRECTORY}/.evergreen/init-node-and-npm-env.sh"

set -o xtrace

export LIBRARY=$PWD

if ! npm run build; then exit 1; fi

npm run check:spec-bench

0 comments on commit 2ab0aec

Please sign in to comment.