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:
1010 runs-on : ubuntu-latest
1111 steps :
1212 - name : Checkout code
13- uses : actions/checkout@v2
13+ uses : actions/checkout@v3
1414
1515 - name : Install go
16- uses : actions/setup-go@v2
16+ uses : actions/setup-go@v3
1717 with :
18- go-version : ^1.16
18+ go-version : ^1.19
1919
2020 - name : Build an image from Dockerfile
2121 run : |
Original file line number Diff line number Diff line change @@ -87,11 +87,13 @@ nfs-armv7:
8787.PHONY : container-build
8888container-build :
8989 docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/$( ARCH) " \
90+ --provenance=false --sbom=false \
9091 -t $(IMAGE_TAG ) -linux-$(ARCH ) --build-arg ARCH=$(ARCH ) .
9192
9293.PHONY : container-linux-armv7
9394container-linux-armv7 :
9495 docker buildx build --pull --output=type=$(OUTPUT_TYPE ) --platform=" linux/arm/v7" \
96+ --provenance=false --sbom=false \
9597 -t $(IMAGE_TAG ) -linux-arm-v7 --build-arg ARCH=arm/v7 .
9698
9799.PHONY : 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#
@@ -199,4 +199,4 @@ def main():
199199 return 0
200200
201201if __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)
2020DRIVER=" test"
2121
2222install_ginkgo () {
23- apt update -y
24- apt install -y golang-ginkgo-dev
23+ go install github.com/onsi/ginkgo/
[email protected] 2524}
2625
2726setup_e2e_binaries () {
You can’t perform that action at this time.
0 commit comments