mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 02:02:46 +00:00
Fix CI error. (#530)
* ignore .git folder when doing clang-format
* fix syntax
* add backslashes before quotes
* add path filter for several extensions
[ROCm/composable_kernel commit: d072790fe2]
This commit is contained in:
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@@ -618,9 +618,9 @@ pipeline {
|
||||
stage('Clang Format') {
|
||||
agent{ label rocmnode("nogpu") }
|
||||
environment{
|
||||
execute_cmd = "find .. -iname \'*.h\' \
|
||||
-o -iname \'*.hpp\' \
|
||||
-o -iname \'*.cpp\' \
|
||||
execute_cmd = "find .. -not -path \'*.git*\' -iname \'*.h\' \
|
||||
-o -not -path \'*.git*\' -iname \'*.hpp\' \
|
||||
-o -not -path \'*.git*\' -iname \'*.cpp\' \
|
||||
-o -iname \'*.h.in\' \
|
||||
-o -iname \'*.hpp.in\' \
|
||||
-o -iname \'*.cpp.in\' \
|
||||
|
||||
Reference in New Issue
Block a user