@@ -128,25 +128,18 @@ build-e2e-image:
128
128
IMAGE_NAME=$(E2E_IMAGE_NAME ) VERSION=$(VERSION ) docker buildx bake e2e-image
129
129
130
130
.PHONY : test-e2e
131
- test-e2e : test-e2e-non-experimental test-e2e-experimental test-e2e-connhelper-ssh # # run all e2e tests
131
+ test-e2e : test-e2e-local test-e2e-connhelper-ssh # # run all e2e tests
132
132
133
- .PHONY : test-e2e-experimental
134
- test-e2e-experimental : build-e2e-image # run experimental e2e tests
135
- docker run --rm $(ENVVARS ) -e DOCKERD_EXPERIMENTAL=1 \
136
- --mount type=bind,src=$(CURDIR ) /build/coverage,dst=/tmp/coverage \
137
- --mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
138
- $(E2E_IMAGE_NAME )
139
-
140
- .PHONY : test-e2e-non-experimental
141
- test-e2e-non-experimental : build-e2e-image # run non-experimental e2e tests
133
+ .PHONY : test-e2e-local
134
+ test-e2e-local : build-e2e-image # run experimental e2e tests
142
135
docker run --rm $(ENVVARS ) \
143
136
--mount type=bind,src=$(CURDIR ) /build/coverage,dst=/tmp/coverage \
144
137
--mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
145
138
$(E2E_IMAGE_NAME )
146
139
147
140
.PHONY : test-e2e-connhelper-ssh
148
141
test-e2e-connhelper-ssh : build-e2e-image # run experimental SSH-connection helper e2e tests
149
- docker run --rm $(ENVVARS ) -e DOCKERD_EXPERIMENTAL=1 -e TEST_CONNHELPER=ssh \
142
+ docker run --rm $(ENVVARS ) -e TEST_CONNHELPER=ssh \
150
143
--mount type=bind,src=$(CURDIR ) /build/coverage,dst=/tmp/coverage \
151
144
--mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
152
145
$(E2E_IMAGE_NAME )
0 commit comments