Skip to content

Commit

Permalink
Merge pull request #14 from qlemoigne/feat/arm64-build
Browse files Browse the repository at this point in the history
Add a build variant for Linux / ARM64 (RaspberryPI)
  • Loading branch information
wiggin77 authored Jul 9, 2024
2 parents cd2992c + 72a3be7 commit b4505b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@ env GOOS=darwin GOARCH=amd64 go build -o ./build/osx_amd64/mailrelay-osx-amd64

# build OpenBSD
echo building OpenBSD...
env GOOS=openbsd GOARCH=amd64 go build -o ./build/openbsd_amd64/mailrelay-openbsd-amd64
env GOOS=openbsd GOARCH=amd64 go build -o ./build/openbsd_amd64/mailrelay-openbsd-amd64

# build Linux ARM64 (Raspberry PI)
echo building Linux ARM64 (Raspberry PI)...
env GOOS=linux GOARCH=arm go build -o ./build/linux_amd64/mailrelay-linux-arm64

0 comments on commit b4505b8

Please sign in to comment.