We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a114f commit f56c995Copy full SHA for f56c995
.github/workflows/_build.yml
@@ -129,11 +129,10 @@ jobs:
129
run: |
130
find build || true
131
# 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 {} +
+ find build -type f -exec touch {} +
134
135
# Make sure source files are older
136
- find . -name "*.cpp" -o -name "*.h" -o -name "*.cu" | xargs touch -t 202001010000
+ find . -name "*.cpp" -o -name "*.h" -o -name "*.cu" -o -name "*.cuh" | xargs touch -t 202001010000 2>/dev/null || true
137
138
- name: Build wheel
139
id: build_wheel
0 commit comments