try something else ;)

This commit is contained in:
Thomas Quandalle
2022-06-17 14:31:06 +02:00
parent 27409b412e
commit 285b5f676d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
name: Docker armv7
name: Docker 386
on:
push:
+1 -1
View File
@@ -1,4 +1,4 @@
name: Docker armv7
name: Docker arm64
on:
push:
+1 -1
View File
@@ -1,4 +1,4 @@
name: Docker armv7
name: Docker armv6
on:
push:
+1 -1
View File
@@ -14,7 +14,7 @@ ENV PATH=$GOPATH/bin:$GOROOT/bin:$PATH
RUN apt-get install -y git
RUN ARCH="$(uname -m)"
RUN [ "$(uname -m)" = "armv7l" ] && ARCH="armv6l"
RUN [ "$(uname -m)" = "armv7l" ] && ARCH="armv6l" || echo "not armv7l"
RUN wget "https://dl.google.com/go/go1.18.linux-$ARCH.tar.gz" && \
tar -xvf "go1.18.linux-$ARCH.tar.gz" && \
mv go /usr/local