File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout code
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v3
14
14
15
15
- name : Install go
16
- uses : actions/setup-go@v2
16
+ uses : actions/setup-go@v3
17
17
with :
18
- go-version : ^1.16
18
+ go-version : ^1.19
19
19
20
20
- name : Build an image from Dockerfile
21
21
run : |
Original file line number Diff line number Diff line change @@ -87,11 +87,13 @@ nfs-armv7:
87
87
.PHONY : container-build
88
88
container-build :
89
89
docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/$( ARCH) " \
90
+ --provenance=false --sbom=false \
90
91
-t $(IMAGE_TAG ) -linux-$(ARCH ) --build-arg ARCH=$(ARCH ) .
91
92
92
93
.PHONY : container-linux-armv7
93
94
container-linux-armv7 :
94
95
docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/arm/v7" \
96
+ --provenance=false --sbom=false \
95
97
-t $(IMAGE_TAG ) -linux-arm-v7 --build-arg ARCH=arm/v7 .
96
98
97
99
.PHONY : 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
#
@@ -199,4 +199,4 @@ def main():
199
199
return 0
200
200
201
201
if __name__ == "__main__" :
202
- sys .exit (main ())
202
+ 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/ginkgo@v1.14.0
25
24
}
26
25
27
26
setup_e2e_binaries () {
You can’t perform that action at this time.
0 commit comments