Skip to content

Commit f56c995

Browse files
committed
test
Signed-off-by: oliver könig <okoenig@nvidia.com>
1 parent c7a114f commit f56c995

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/_build.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,10 @@ jobs:
129129
run: |
130130
find build || true
131131
# Touch all build artifacts to current time
132-
find build/temp.linux-x86_64-cpython-312 -name "*.o" -exec touch {} +
133-
find build/lib.linux-x86_64-cpython-312 -type f -exec touch {} +
132+
find build -type f -exec touch {} +
134133
135134
# Make sure source files are older
136-
find . -name "*.cpp" -o -name "*.h" -o -name "*.cu" | xargs touch -t 202001010000
135+
find . -name "*.cpp" -o -name "*.h" -o -name "*.cu" -o -name "*.cuh" | xargs touch -t 202001010000 2>/dev/null || true
137136
138137
- name: Build wheel
139138
id: build_wheel

0 commit comments

Comments
 (0)