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
119
119
.PHONY : container-linux
120
120
container-linux :
121
121
docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/$( ARCH) " \
122
+ --provenance=false --sbom=false \
122
123
-t $(IMAGE_TAG ) -linux-$(ARCH ) --build-arg ARCH=$(ARCH ) -f ./pkg/blobplugin/Dockerfile .
123
124
124
125
.PHONY : blob-container
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
3
3
# Copyright 2019 The Kubernetes Authors.
4
4
#
@@ -207,4 +207,4 @@ def main():
207
207
return 0
208
208
209
209
if __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)
20
20
DRIVER=" test"
21
21
22
22
install_ginkgo () {
23
- apt update -y
24
- apt install -y golang-ginkgo-dev
23
+ go install github.com/onsi/ginkgo/
[email protected]
25
24
}
26
25
27
26
setup_e2e_binaries () {
You can’t perform that action at this time.
0 commit comments