Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit ec4ce7b

Browse files
committed
add build support for raspberry
1 parent 09441c6 commit ec4ce7b

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.goreleaser.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
builds:
22
-
3+
goos:
4+
- linux
5+
- darwin
6+
- windows
7+
goarch:
8+
- amd64
9+
- arm
10+
goarm:
11+
- 6
12+
- 7
13+
ignore:
14+
- goos: darwin
15+
goarch: arm
316
flags: -tags vfs
417
hooks:
518
pre: go generate

get.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ uname_arch_check() {
150150
armv5) return 0 ;;
151151
armv6) return 0 ;;
152152
armv7) return 0 ;;
153+
armv7l) arch="armv7"; return 0 ;;
153154
ppc64) return 0 ;;
154155
ppc64le) return 0 ;;
155156
mips) return 0 ;;

0 commit comments

Comments
 (0)