generated from dell/actions-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
142 lines (120 loc) · 2.94 KB
/
.gitignore
File metadata and controls
142 lines (120 loc) · 2.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# -----------------------------------------------------------------------------
# Global ignore rules for the Storage Performance Tool (SPT)
# This aggregates the common patterns from cli/.gitignore and engine/.gitignore
# so contributors can work from the repo root without leaving stray artifacts.
# -----------------------------------------------------------------------------
# OS & editor detritus
.DS_Store
Thumbs.db
*.swp
*.swo
# Log and coverage artifacts
*.log
coverage.*
coverage.html
coverage.out
# Local environment files
.env
.env.*
!cli/.env.example
!engine/.env.example
!engine/bundle/.env.example
# -----------------------------------------------------------------------------
# CLI specific artifacts (Go build/test outputs)
# -----------------------------------------------------------------------------
# Native binaries and archives
cli/*.exe
cli/*.exe~
cli/*.dll
cli/*.so
cli/*.dylib
cli/mcli
cli/spt
/spt
cli/build/spt-darwin-amd64
cli/build/spt-darwin-arm64
cli/build/spt-linux-amd64
# Go workspace & modules cache
cli/vendor/
cli/go.work
cli/go.work.sum
# Test & coverage outputs
cli/*.test
cli/coverage.*
cli/cmd_coverage.html
cli/test-results.json
cli/test-failures.txt
cli/coverage.out
cli/coverage.html
cli/entry-metrics.json
# Generated scenarios and scratch space
cli/*.zst
cli/tools/work/
cli/tools/results/
cli/_tmp/
cli/results/
/results/
/engine/results/
cli/tools/codehealth/deadfinder/report.json
cli/tools/codehealth/deadfinder/deadfinder
spt-scenario-*.js
# Local documentation exports
cli/*.pdf
# -----------------------------------------------------------------------------
# Engine specific artifacts (Gradle/Java build outputs)
# -----------------------------------------------------------------------------
# Java/Gradle build trees
engine/.gradle/
engine/build/
engine/**/build/
!engine/gradle/wrapper/gradle-wrapper.jar
!engine/**/src/main/**/build/
!engine/**/src/test/**/build/
# IDE metadata
engine/.idea/
engine/*.iws
engine/*.iml
engine/*.ipr
engine/out/
!engine/**/src/main/**/out/
!engine/**/src/test/**/out/
# Eclipse & related
engine/.apt_generated
engine/.classpath
engine/.factorypath
engine/.project
engine/.settings
engine/.springBeans
engine/.sts4-cache
engine/bin/
!engine/**/src/main/**/bin/
!engine/**/src/test/**/bin/
# J2ME / mobile tooling
engine/.mtj.tmp/
# JVM crash reports
engine/hs_err_pid*
engine/replay_pid*
# Maven leftovers (if gradle <-> maven conversions run)
engine/pom.xml.tag
engine/pom.xml.releaseBackup
engine/pom.xml.versionsBackup
engine/pom.xml.next
engine/release.properties
engine/dependency-reduced-pom.xml
engine/buildNumber.properties
engine/.mvn/timing.properties
engine/.mvn/wrapper/maven-wrapper.jar
# Temporary files
engine/tmp/
*.tmp
# Miscellaneous engine logs
engine/logs/
engine/test-output/
engine/target/
# CLI runtime captures
cli/entry-metrics.json
# Release test dir
/release/
# CLI codehealth artifacts
cli/tools/codehealth/deadfinder/deadfinder
cli/tools/codehealth/deadfinder/report.json