File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ container: blob
119119.PHONY : container-linux
120120container-linux :
121121 docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/$( ARCH) " \
122+ --provenance=false --sbom=false \
122123 -t $(IMAGE_TAG ) -linux-$(ARCH ) --build-arg ARCH=$(ARCH ) -f ./pkg/blobplugin/Dockerfile .
123124
124125.PHONY : blob-container
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
1+ #!/usr/bin/env python3
22
33# Copyright 2019 The Kubernetes Authors.
44#
@@ -207,4 +207,4 @@ def main():
207207 return 0
208208
209209if __name__ == "__main__" :
210- sys .exit (main ())
210+ sys .exit (main ())
Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ PROJECT_ROOT=$(git rev-parse --show-toplevel)
2020DRIVER=" test"
2121
2222install_ginkgo () {
23- apt update -y
24- apt install -y golang-ginkgo-dev
23+ go install github.com/onsi/ginkgo/ginkgo@v1.14.0
2524}
2625
2726setup_e2e_binaries () {
You can’t perform that action at this time.
0 commit comments