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/config.yml
+31-2Lines changed: 31 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1065,9 +1065,38 @@ tasks:
1065
1065
working_dir: "./libmongocrypt"
1066
1066
args:
1067
1067
- "./.evergreen/benchmark-python.sh"
1068
-
- command: "perf.send"
1068
+
- command: shell.exec
1069
1069
params:
1070
-
file: libmongocrypt/bindings/python/results.json
1070
+
script: |
1071
+
# We use the requester expansion to determine whether the data is from a mainline evergreen run or not
1072
+
if [ "${requester}" == "commit" ]; then
1073
+
is_mainline=true
1074
+
else
1075
+
is_mainline=false
1076
+
fi
1077
+
1078
+
# 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