diff options
| author | mwpeterson <michael@mwpeterson.com> | 2020-07-28 15:57:49 -0400 |
|---|---|---|
| committer | mwpeterson <michael@mwpeterson.com> | 2020-07-28 15:57:49 -0400 |
| commit | 9f6ecfbd42d4f01efd4385e3d8f126b7ae81d2cf (patch) | |
| tree | 0e069fac4ce5c452280ae877d3390b821bb19550 /Makefile | |
| parent | fa0e2ff49876a199cda4c46d278ec6db750c083d (diff) | |
| download | seaweedfs-9f6ecfbd42d4f01efd4385e3d8f126b7ae81d2cf.tar.xz seaweedfs-9f6ecfbd42d4f01efd4385e3d8f126b7ae81d2cf.zip | |
add 5-byte large disk builds for arm and arm64
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -55,6 +55,14 @@ release: deps windows_build darwin_build linux_build bsd_build 5_byte_linux_buil $(call build_large,windows,amd64,.exe) $(call zip_large,windows,amd64,.exe) +5_byte_arm_build: $(sources) + $(call build_large,linux,arm,) + $(call tar_large,linux,arm) + +5_byte_arm64_build: $(sources) + $(call build_large,linux,arm64,) + $(call tar_large,linux,arm64) + linux_build: build/linux_arm.tar.gz build/linux_arm64.tar.gz build/linux_386.tar.gz build/linux_amd64.tar.gz build/linux_386.tar.gz: $(sources) |
