File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
jenkins/scripts/pulse_in_pipeline_scanning Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,19 +83,19 @@ def process_container_result():
8383 if count_container_vulns > 0 :
8484 NEW_RISKY_DEPENDENCIES .append (f"{ count_container_vulns } new container vulnerability" )
8585
86- last_container_licneses = get_last_scan_results ("container_license" , args .branch )
86+ last_container_licenses = get_last_scan_results ("container_license" , args .branch )
8787 new_amd64_container_licenses = submit_container_licenses (
8888 os .path .join (args .report_directory , "release_amd64/licenses.json" ),
8989 os .path .join (args .report_directory , "base_amd64/licenses.json" ),
9090 "amd64" ,
91- last_container_licneses ,
91+ last_container_licenses ,
9292 ** SUBMIT_KWARG ,
9393 )
9494 new_arm64_container_licenses = submit_container_licenses (
9595 os .path .join (args .report_directory , "release_arm64/licenses.json" ),
9696 os .path .join (args .report_directory , "base_arm64/licenses.json" ),
9797 "arm64" ,
98- last_container_licneses ,
98+ last_container_licenses ,
9999 ** SUBMIT_KWARG ,
100100 )
101101 count_container_licenses = len (new_amd64_container_licenses + new_arm64_container_licenses )
Original file line number Diff line number Diff line change 88def post_slack_msg (build_number , branch , risk_detail ):
99 SLACK_WEBHOOK_URL = os .environ .get ("TRTLLM_PLC_WEBHOOK" )
1010 if not SLACK_WEBHOOK_URL :
11- raise EnvironmentError ("Error: Environment variable 'SLACK_WEBHOOK_URL ' is not set!" )
11+ raise EnvironmentError ("Error: Environment variable 'TRTLLM_PLC_WEBHOOK ' is not set!" )
1212 starttime = datetime .now (timezone .utc ).replace (hour = 0 , minute = 0 , second = 0 , microsecond = 0 )
1313 base = (
1414 "https://gpuwa.nvidia.com/kibana/s/tensorrt/app/dashboards"
You can’t perform that action at this time.
0 commit comments