You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .evergreen.yml
+31-2Lines changed: 31 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4402,9 +4402,38 @@ functions:
4402
4402
sh -c 'MONGOSH_SMOKE_TEST_SERVER="$MONGODB_URI" ./dist/mongosh --perfTests > perf_results.json'
4403
4403
env:
4404
4404
DISTRO_ID: ${distro_id}
4405
-
- command: perf.send
4405
+
- command: shell.exec
4406
4406
params:
4407
-
file: src/perf_results.json
4407
+
script: |
4408
+
# We use the requester expansion to determine whether the data is from a mainline evergreen run or not
4409
+
if [ "${requester}" == "commit" ]; then
4410
+
is_mainline=true
4411
+
else
4412
+
is_mainline=false
4413
+
fi
4414
+
4415
+
# Parse the username out of the order_id. Patches append the username. The Signal Processing Service (SPS) endpoint does not need the other information.
Copy file name to clipboardExpand all lines: .evergreen/evergreen.yml.in
+31-2Lines changed: 31 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1047,10 +1047,39 @@ functions:
1047
1047
sh -c 'MONGOSH_SMOKE_TEST_SERVER="$MONGODB_URI" ./dist/mongosh --perfTests > perf_results.json'
1048
1048
env:
1049
1049
DISTRO_ID: ${distro_id}
1050
-
- command: perf.send
1050
+
- command: shell.exec
1051
1051
params:
1052
-
file: src/perf_results.json
1052
+
script: |
1053
+
# We use the requester expansion to determine whether the data is from a mainline evergreen run or not
1054
+
if [ "${requester}" == "commit" ]; then
1055
+
is_mainline=true
1056
+
else
1057
+
is_mainline=false
1058
+
fi
1059
+
1060
+
# Parse the username out of the order_id. Patches append the username. The Signal Processing Service (SPS) endpoint does not need the other information.
0 commit comments