File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
test/benchmarks/driverBench Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -1102,6 +1102,7 @@ functions:
11021102 env :
11031103 PROJECT_DIRECTORY : ${PROJECT_DIRECTORY}
11041104 MONGODB_URI : ${MONGODB_URI}
1105+ DRIVERS_TOOLS : ${DRIVERS_TOOLS}
11051106 binary : bash
11061107 args :
11071108 - ${PROJECT_DIRECTORY}/.evergreen/run-benchmarks.sh
Original file line number Diff line number Diff line change @@ -1064,6 +1064,7 @@ functions:
10641064 env :
10651065 PROJECT_DIRECTORY : ${PROJECT_DIRECTORY}
10661066 MONGODB_URI : ${MONGODB_URI}
1067+ DRIVERS_TOOLS : ${DRIVERS_TOOLS}
10671068 binary : bash
10681069 args :
10691070 - ${PROJECT_DIRECTORY}/.evergreen/run-benchmarks.sh
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ set -o errexit
4+ set -o xtrace
5+ set -o nounset
6+
37source $DRIVERS_TOOLS /.evergreen/init-node-and-npm-env.sh
48
59export MONGODB_URI=$MONGODB_URI
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ const systemInfo = () =>
2222 `- cores: ${ platform . cores } ` ,
2323 `- arch: ${ os . arch ( ) } ` ,
2424 `- os: ${ process . platform } (${ os . release ( ) } )` ,
25- `- ram: ${ platform . ram } \n`
25+ `- ram: ${ platform . ram } ` ,
26+ `- node: ${ process . version } \n`
2627 ] . join ( '\n' ) ;
2728console . log ( systemInfo ( ) ) ;
2829
You can’t perform that action at this time.
0 commit comments