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

chore(cicd): remove CI pipeline external infra dependencies #2403

Merged
merged 25 commits into from
Jun 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
configure default values for e2e cli
  • Loading branch information
schoren committed Jun 2, 2023
commit 9b10410532f1847f7b7158db9bd865ee4db1eb23
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=dev
VERSION?="dev"
GORELEASER_VERSION=1.18.2-pro

PROJECT_ROOT=${PWD}
Expand Down
6 changes: 5 additions & 1 deletion testing/cli-e2etest/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
TRACETEST_COMMAND?="../../dist/tracetest"
TEST_ENVIRONMENT?="jaeger"
TAG?="dev"

help: Makefile ## show list of commands
@echo "Choose a command run:"
@echo ""
@awk 'BEGIN {FS = ":.*?## "} /[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) | sort

test: # run tests for this application
go clean -testcache
go test -timeout 150s -p 1 ./...
go test -v -timeout 150s -p 1 ./...