WORK IN PROGRESS Add arm64 build

This change would close #68 and would add an arm64 (ARMv8) build.
This commit is contained in:
Edward Vielmetti 2017-04-07 02:10:37 -04:00 committed by GitHub
parent 06a29fc912
commit 6a89c9af38

View File

@ -18,6 +18,7 @@ build-all:
GOOS=darwin GOARCH=amd64 go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-darwin-amd64
GOOS=linux GOARCH=amd64 go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-linux-amd64
GOOS=linux GOARCH=arm go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-linux-arm
GOOS=linux GOARCH=arm go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-linux-arm64
image:
docker build -t ctop_build -f Dockerfile_build .