Merge pull request #14139 from sharifelgamal/fix-test-arm64

install proper version of golang in arm64 kvm installer dockerfile
pull/13639/head
Sharif Elgamal 2022-05-10 15:45:12 -07:00 committed by GitHub
commit 179725f492
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ on:
- "**.yml"
- "**.yaml"
- "Makefile"
- "**Dockerfile**"
- "!deploy/kicbase/**"
- "!deploy/iso/**"
types:

View File

@ -33,7 +33,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
libvirt-dev:arm64 && \
dpkg --configure -a
RUN curl -sSL https://golang.org/dl/go${GO_VERSION}.linux-arm64.tar.gz | tar -C /usr/local -xzf -
RUN curl -sSL https://golang.org/dl/go${GO_VERSION}.linux-amd64.tar.gz | tar -C /usr/local -xzf -
ENV GOPATH /go