mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-05 14:37:09 +00:00
add aarch64 build
This commit is contained in:
parent
f012c1180c
commit
f7ff798238
3 changed files with 9 additions and 2 deletions
4
build.sh
4
build.sh
|
|
@ -9,6 +9,10 @@ case $ARCH in
|
|||
;;
|
||||
armv*)
|
||||
BASE_IMAGE=arm32v6/alpine
|
||||
;;
|
||||
aarch64)
|
||||
BASE_IMAGE=alpine
|
||||
;;
|
||||
esac
|
||||
|
||||
TAGS=$ARCH
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
push.sh
2
push.sh
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue