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
change tracetest_command env to tracetest_cli for consistency
  • Loading branch information
schoren committed Jun 2, 2023
commit df9be850d71c42e30a49e12b2406f34d7d22a5e3
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ jobs:
find ./dist -name 'tracetest' -exec cp {} ./dist \;
chmod +x ./dist/tracetest

export TRACETEST_COMMAND=$PWD/dist/tracetest
export TRACETEST_CLI=$PWD/dist/tracetest
export TEST_ENVIRONMENT=jaeger
export TAG=pr-${{ github.event.pull_request.number }}

Expand Down
2 changes: 1 addition & 1 deletion testing/cli-e2etest/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TRACETEST_COMMAND?="../../dist/tracetest"
TRACETEST_CLI?="../../dist/tracetest"
TEST_ENVIRONMENT?="jaeger"
TAG?="dev"

Expand Down
2 changes: 1 addition & 1 deletion testing/cli-e2etest/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func GetConfigAsEnvVars() *EnvironmentVars {

enableCLIDebug := (os.Getenv("ENABLE_CLI_DEBUG") == "true")

tracetestCommand := os.Getenv("TRACETEST_COMMAND")
tracetestCommand := os.Getenv("TRACETEST_CLI")
if tracetestCommand == "" {
tracetestCommand = "tracetest"
}
Expand Down