Skip to content

Commit

Permalink
Add option to build 32b ARM Debian package (armhf) (VictoriaMetrics#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobek authored Aug 4, 2020
1 parent a9ffd23 commit bba1442
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package/package_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ if [[ "$ARCH" == "amd64" ]]; then
elif [[ "$ARCH" == "arm64" ]]; then
DEB_ARCH=arm64
EXENAME_SRC="victoria-metrics-arm64-prod"
elif [[ "$ARCH" == "arm" ]]; then
DEB_ARCH=armhf
EXENAME_SRC="victoria-metrics-arm-prod"
else
echo "*** Unknown arch $ARCH"
exit 1
Expand Down

0 comments on commit bba1442

Please sign in to comment.