File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ IMAGE_REGISTRY ?= $(STAGING_IMAGE_REGISTRY)/gateway-api-inference-extension
33
33
IMAGE_NAME := epp
34
34
IMAGE_REPO ?= $(IMAGE_REGISTRY ) /$(IMAGE_NAME )
35
35
IMAGE_TAG ?= $(IMAGE_REPO ) :$(GIT_TAG )
36
- ROOT_DIR: = $(shell dirname $(realpath $(firstword $(MAKEFILE_LIST ) ) ) )
36
+ PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST ) ) ) )
37
37
E2E_MANIFEST_PATH ?= config/manifests/vllm/gpu-deployment.yaml
38
38
39
39
SYNCER_IMAGE_NAME := lora-syncer
@@ -92,7 +92,6 @@ generate: controller-gen code-generator manifests ## Generate code containing De
92
92
$(CONTROLLER_GEN ) object:headerFile=" hack/boilerplate.go.txt" paths=" ./..."
93
93
./hack/update-codegen.sh
94
94
95
- PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST ) ) ) )
96
95
# Use same code-generator version as k8s.io/api
97
96
CODEGEN_VERSION := $(shell go list -m -f '{{.Version}}' k8s.io/api)
98
97
CODEGEN = $(shell pwd) /bin/code-generator
@@ -130,7 +129,7 @@ test-integration: ## Run tests.
130
129
131
130
.PHONY : test-e2e
132
131
test-e2e : # # Run end-to-end tests against an existing Kubernetes cluster. When using default configuration, the tests need at least 3 available GPUs.
133
- MANIFEST_PATH=$(ROOT_DIR ) /$(E2E_MANIFEST_PATH ) go test ./test/e2e/epp/ -v -ginkgo.v
132
+ MANIFEST_PATH=$(PROJECT_DIR ) /$(E2E_MANIFEST_PATH ) go test ./test/e2e/epp/ -v -ginkgo.v
134
133
135
134
.PHONY : lint
136
135
lint : golangci-lint # # Run golangci-lint linter
You can’t perform that action at this time.
0 commit comments