Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Makefile targets for must-gather tests #380

Merged
Merged
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
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ test-e2e: build-e2e-all
test-install-e2e: build-e2e-all
hack/run-test-install-e2e.sh

test-must-gather-e2e: build-must-gather-e2e
hack/run-test-must-gather-e2e.sh

##@ Build

binary: build-tools
Expand Down Expand Up @@ -184,6 +187,9 @@ binary-e2e-serial:
binary-e2e-tools:
go test -c -v -o bin/e2e-nrop-tools.test ./test/e2e/tools

binary-must-gather-e2e:
go test -c -v -o bin/e2e-nrop-must-gather.test ./test/e2e/must-gather

binary-e2e-all: goversion binary-e2e-install binary-e2e-rte binary-e2e-sched binary-e2e-uninstall binary-e2e-serial binary-e2e-tools runner-e2e-serial build-pause

runner-e2e-serial: bin/envsubst
Expand All @@ -208,6 +214,8 @@ build-e2e-uninstall: fmt vet binary-e2e-uninstall

build-e2e-all: fmt vet binary-e2e-all

build-must-gather-e2e: fmt vet binary-must-gather-e2e

build-pause:
install -m 755 hack/pause bin/

Expand Down