File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,7 @@ VERSION ?= latest
3434# Use a custom version for E2E tests if we are testing in CI
3535ifdef CI
3636ifndef PUBLISH
37- ifdef WINDOWS_SERVER_VERSION
38- override IMAGE_VERSION := e2e-$(WINDOWS_SERVER_VERSION ) -$(GIT_COMMIT )
39- endif
40- ifdef EXTERNAL_E2E_TEST
41- override IMAGE_VERSION := e2e-external-$(GIT_COMMIT )
42- endif
37+ override IMAGE_VERSION := e2e-$(GIT_COMMIT )
4338endif
4439endif
4540IMAGE_TAG = $(REGISTRY ) /$(IMAGENAME ) :$(IMAGE_VERSION )
@@ -151,13 +146,13 @@ container: smb
151146
152147.PHONY : container-linux
153148container-linux :
154- docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/$( ARCH) " \
149+ docker buildx build --no-cache -- pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/$( ARCH) " \
155150 --provenance=false --sbom=false \
156151 -t $(IMAGE_TAG ) -linux-$(ARCH ) --build-arg ARCH=$(ARCH ) -f ./cmd/smbplugin/Dockerfile .
157152
158153.PHONY : container-linux-armv7
159154container-linux-armv7 :
160- docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/arm/v7" \
155+ docker buildx build --no-cache -- pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/arm/v7" \
161156 --provenance=false --sbom=false \
162157 -t $(IMAGE_TAG ) -linux-arm-v7 --build-arg ARCH=arm/v7 -f ./cmd/smbplugin/Dockerfile .
163158
You can’t perform that action at this time.
0 commit comments