Skip to content

Commit 08bd68a

Browse files
committed
Update .gitignore with additional build artifacts and CI files
1 parent 394d80c commit 08bd68a

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed

.gitignore

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,3 +232,79 @@ benchmarks/*.exe
232232
# Additional build artifacts
233233
*.pdb
234234
*.ilk
235+
236+
# CI/CD artifacts
237+
.github/workflows/logs/
238+
actions_cache/
239+
coverage.xml
240+
test_results.xml
241+
*.coverage
242+
.coverage.*
243+
244+
# Windows build artifacts - extended
245+
*.manifest
246+
*.tlb
247+
*.tli
248+
*.tlh
249+
*.tmp
250+
*.rsp
251+
*.pgc
252+
*.pgd
253+
*.meta
254+
*.tlog
255+
*.lastbuildstate
256+
*.exp
257+
*.ipdb
258+
*.iobj
259+
260+
# MSVC debug files
261+
*.vc.db
262+
*.vc.VC.opendb
263+
*.sdf
264+
*.opensdf
265+
*.ipch
266+
*.aps
267+
*.ncb
268+
*.user
269+
*.sln.docstates
270+
*.suo
271+
*.cachefile
272+
*.VC.db
273+
*.VC.opendb
274+
275+
# Xmake additional artifacts
276+
.xmake-private/
277+
packages/
278+
.xmake-cache/
279+
280+
# Documentation deployment artifacts
281+
docs/deploy/
282+
docs/build/
283+
_site/
284+
285+
# Temporary test files
286+
test_*.py
287+
test_*.cpp
288+
test_*.json
289+
test_*.txt
290+
test_*.log
291+
*.test.*
292+
293+
# Performance profiling files
294+
*.prof
295+
*.perf
296+
perf.data*
297+
callgrind.out*
298+
massif.out*
299+
*.gprof
300+
301+
# Archive and compressed files
302+
*.zip
303+
*.tar.gz
304+
*.tar.bz2
305+
*.tar.xz
306+
*.rar
307+
*.7z
308+
*.gz
309+
*.bz2
310+
*.xz

0 commit comments

Comments
 (0)