Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,13 @@ vendor/
\#*\#
.\#*

# AI temp files files
.claude/
# AI temp/local files
.claude/settings.local.json
.claude/history/
.claude/cache/
.claude/logs/
.claude/.session*
.claude/*.log

# documentation website asset folder
site
Expand All @@ -50,3 +55,6 @@ site

# Temporary files and directories
/test/regression/convert/testdata/tmp/*

# E2E profiling artifacts
e2e-profiles/
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,14 @@ test-upgrade-experimental-e2e: $(TEST_UPGRADE_E2E_TASKS) #HELP Run upgrade e2e t
e2e-coverage:
COVERAGE_NAME=$(COVERAGE_NAME) ./hack/test/e2e-coverage.sh

.PHONY: start-profiling
start-profiling: #HELP Start profiling in background. Run your tests, then use 'make stop-profiling'. Use PROFILE_NAME=<name> to specify output name.
./hack/tools/e2e-profiling/start-profiling.sh $(PROFILE_NAME)
Comment on lines +338 to +339
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if we craft the target like:

start-profiling/%:
  ./hack/tools/e2e-profiling/start-profiling.sh $*

then we could simply the invocation with:

make start-profiling/foo


.PHONY: stop-profiling
stop-profiling: #HELP Stop profiling and generate analysis report
./hack/tools/e2e-profiling/stop-profiling.sh

#SECTION KIND Cluster Operations

.PHONY: kind-load
Expand Down
Loading