File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
test/benchmarks/driverBench Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -1102,6 +1102,7 @@ functions:
1102
1102
env :
1103
1103
PROJECT_DIRECTORY : ${PROJECT_DIRECTORY}
1104
1104
MONGODB_URI : ${MONGODB_URI}
1105
+ DRIVERS_TOOLS : ${DRIVERS_TOOLS}
1105
1106
binary : bash
1106
1107
args :
1107
1108
- ${PROJECT_DIRECTORY}/.evergreen/run-benchmarks.sh
Original file line number Diff line number Diff line change @@ -1064,6 +1064,7 @@ functions:
1064
1064
env :
1065
1065
PROJECT_DIRECTORY : ${PROJECT_DIRECTORY}
1066
1066
MONGODB_URI : ${MONGODB_URI}
1067
+ DRIVERS_TOOLS : ${DRIVERS_TOOLS}
1067
1068
binary : bash
1068
1069
args :
1069
1070
- ${PROJECT_DIRECTORY}/.evergreen/run-benchmarks.sh
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ set -o errexit
4
+ set -o xtrace
5
+ set -o nounset
6
+
3
7
source $DRIVERS_TOOLS /.evergreen/init-node-and-npm-env.sh
4
8
5
9
export MONGODB_URI=$MONGODB_URI
Original file line number Diff line number Diff line change @@ -22,7 +22,9 @@ const systemInfo = () =>
22
22
`- cores: ${ platform . cores } ` ,
23
23
`- arch: ${ os . arch ( ) } ` ,
24
24
`- os: ${ process . platform } (${ os . release ( ) } )` ,
25
- `- ram: ${ platform . ram } \n`
25
+ `- ram: ${ platform . ram } ` ,
26
+ `- bson: ${ require ( 'bson/package.json' ) . version } ` ,
27
+ `- node: ${ process . version } \n`
26
28
] . join ( '\n' ) ;
27
29
console . log ( systemInfo ( ) ) ;
28
30
You can’t perform that action at this time.
0 commit comments