"git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "a52be5c683cd491ee5f81d38670472017eecc481"
Unverified Commit e4e01329 authored by Hongzhi (Steve), Chen's avatar Hongzhi (Steve), Chen Committed by GitHub
Browse files

[Misc] Add debug output to avoid silent failure. (#5347)


Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
parent 0127a2ea
...@@ -12,6 +12,7 @@ response = requests.get("{}wfapi".format(JOB_LINK), verify=False).json() ...@@ -12,6 +12,7 @@ response = requests.get("{}wfapi".format(JOB_LINK), verify=False).json()
# List of status of entire job. # List of status of entire job.
# https://javadoc.jenkins.io/hudson/model/Result.html # https://javadoc.jenkins.io/hudson/model/Result.html
status = response["status"] status = response["status"]
status_output = f"[Debug Only] {status}"
if status == "SUCCESS": if status == "SUCCESS":
status_output = "✅ CI test succeeded" status_output = "✅ CI test succeeded"
elif status == "ABORTED": elif status == "ABORTED":
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment