add aarch64 build

This commit is contained in:
Jakob Ketterl 2019-12-15 02:18:30 +00:00
parent f012c1180c
commit f7ff798238
3 changed files with 9 additions and 2 deletions

View File

@ -9,6 +9,10 @@ case $ARCH in
;;
armv*)
BASE_IMAGE=arm32v6/alpine
;;
aarch64)
BASE_IMAGE=alpine
;;
esac
TAGS=$ARCH

View File

@ -29,9 +29,12 @@ case $ARCH in
armv*)
BINARY=SDRplay_RSP_API-RPi-2.13.1.run
;;
aarch64)
BINARY=SDRplay_RSP_API-ARM64-2.13.1.run
;;
esac
wget http://www.sdrplay.com/software/$BINARY
wget https://www.sdrplay.com/software/$BINARY
sh $BINARY --noexec --target sdrplay
patch --verbose -Np0 < /install-lib.$ARCH.patch

View File

@ -3,7 +3,7 @@ set -euxo pipefail
ARCH=$(uname -m)
ALL_ARCHS="x86_64 armv7l"
ALL_ARCHS="x86_64 armv7l aarch64"
for image in openwebrx-rtlsdr openwebrx-sdrplay openwebrx-hackrf openwebrx-airspy openwebrx-full openwebrx; do
docker push jketterl/$image:$ARCH