Browse Source

Add arm64 arch to build targets. Closes #1053

pull/1083/head
Gabe Kangas 4 years ago
parent
commit
5e198bcec6
  1. 6
      build/release/build.sh

6
build/release/build.sh

@ -1,11 +1,11 @@
#!/bin/sh #!/bin/sh
# Human readable names of binary distributions # Human readable names of binary distributions
DISTRO=(macOS-64bit linux-64bit linux-32bit linux-arm7) DISTRO=(macOS-64bit linux-64bit linux-32bit linux-arm7 linux-arm64)
# Operating systems for the respective distributions # Operating systems for the respective distributions
OS=(darwin linux linux linux) OS=(darwin linux linux linux linux)
# Architectures for the respective distributions # Architectures for the respective distributions
ARCH=(amd64 amd64 386 arm-7) ARCH=(amd64 amd64 386 arm-7 arm64)
# Version # Version
VERSION=$1 VERSION=$1

Loading…
Cancel
Save