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
build=$(pip freeze | grep benchmark-runner | sed 's/==/=/g')
328
311
build_version="$(cut -d'=' -f2 <<<"$build")"
329
312
end=$(printf '%(%s)T' -1)
330
313
ci_minutes_time=$(( (end - START_CI) / 60))
331
314
# Check for workload failure or success => return pass/failed
332
315
if [[ "${{needs.workload.outputs.job_status}}" == "failure" || "${{needs.workload.outputs.job_status}}" == "cancelled" ]]; then status="failed"; else status="pass"; fi
333
316
echo '>>>>>>>>>>>>>>>>>>>>>>>>>> Update CI status $status >>>>>>>>>>>>>>>>>>>>>>>>>>'
build=$(pip freeze | grep benchmark-runner | sed 's/==/=/g')
234
225
build_version="$(cut -d'=' -f2 <<<"$build")"
235
226
end=$(printf '%(%s)T' -1)
236
227
ci_minutes_time=$(( (end - START_CI) / 60))
237
228
# Check for workload failure or success => return pass/failed
238
229
if [[ "${{needs.workload.outputs.job_status}}" == "failure" || "${{needs.workload.outputs.job_status}}" == "cancelled" ]]; then status="failed"; else status="pass"; fi
239
230
echo '>>>>>>>>>>>>>>>>>>>>>>>>>> Update CI status $status >>>>>>>>>>>>>>>>>>>>>>>>>>'
0 commit comments