File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ # Image tag for image containing e2e tests
2+ E2E_TEST_IMAGE_VERSION ?= latest
3+ E2E_TEST_IMAGE ?= quay.io/opendatahub/distributed-workloads-tests:${E2E_TEST_IMAGE_VERSION}
14
25.PHONY : setup-kueue
36setup-kueue : # # Set up Kueue for e2e tests.
@@ -34,3 +37,7 @@ imports: openshift-goimports ## Organize imports in go files using openshift-goi
3437.PHONY : verify-imports
3538verify-imports : openshift-goimports # # Run import verifications.
3639 ./hack/verify-imports.sh $(OPENSHIFT-GOIMPORTS )
40+
41+ .PHONY : build-test-image
42+ build-test-image :
43+ podman build -f images/tests/Dockerfile -t ${E2E_TEST_IMAGE} .
Original file line number Diff line number Diff line change 11# Use the official Go image as a base image
2- FROM golang:1.21
2+ FROM golang:1.23
33
44ENV KUBECONFIG=/distributed-workloads/tests/.kube/config
55
You can’t perform that action at this time.
0 commit comments