Skip to content

Commit 7667525

Browse files
authored
Fix iree.build source directory being gitignore'd (#22391)
The gitignore path is currently wrong (it should be `iree/build`, not `iree/compiler/build`). This switches to selectively ignoring `build` directories instead of selectively un-ignoring, since that seems safer.
1 parent 6816a39 commit 7667525

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.gitignore

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@
2222
.DS_Store
2323

2424
# CMake artifacts
25-
build/
26-
build-*/
25+
/build/
26+
/build-*/
2727
Testing/
28-
# Include iree.build package
29-
!compiler/bindings/python/iree/compiler/build/
28+
/compiler/build/
29+
/runtime/build/
30+
/integrations/tensorflow/python_projects/iree_tf/build/
31+
/integrations/tensorflow/python_projects/iree_tflite/build/
3032

3133
# Bazel artifacts
3234
**/bazel-*

0 commit comments

Comments
 (0)