Skip to content

Commit 628bb56

Browse files
authored
[None][chore] Fixing guardword check (#12579)
Signed-off-by: Xiwen Yu <13230610+VALLIS-NERIA@users.noreply.github.com>
1 parent b837c63 commit 628bb56

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CODING_GUIDELINES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ def foo(c: Callable[[int], int]) -> None:
560560
c(42)
561561
```
562562

563-
8. Dont annotate variables where it is obvious/not necessary.
563+
8. Don't annotate variables where it is obvious/not necessary.
564564

565565
```py
566566
x: int = 42 # Not required

jenkins/L0_MergeRequest.groovy

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,8 @@ def launchReleaseCheck(pipeline, globalVars)
417417
"*/3rdparty/*",
418418
"*/cpp/tensorrt_llm/deep_ep/nvshmem_src_*.txz",
419419
"*/examples/scaffolding/contrib/mcp/weather/weather.py",
420-
"*/tensorrt_llm_internal_cutlass_kernels_static.tar.xz"
420+
"*/tensorrt_llm_internal_cutlass_kernels_static.tar.xz",
421+
"*/triton_kernels/*.py"
421422
]
422423
sh "cd ${LLM_ROOT} && confidentiality-scan \$(find . -type f ${ignoreList.collect { "-not -path \"${it}\"" }.join(' ')}) 2>&1 | tee scan.log"
423424
def lastLine = sh(script: "tail -n 1 ${LLM_ROOT}/scan.log", returnStdout: true).trim()

0 commit comments

Comments
 (0)