mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-04 14:08:38 +00:00
use explicit revisions so i can use the docker build cache
This commit is contained in:
parent
6bcdd4007a
commit
6297b8f277
8 changed files with 54 additions and 27 deletions
|
|
@ -3,6 +3,9 @@ set -euxo pipefail
|
|||
|
||||
function cmakebuild() {
|
||||
cd $1
|
||||
if [[ ! -z "${2:-}" ]]; then
|
||||
git checkout $2
|
||||
fi
|
||||
mkdir build
|
||||
cd build
|
||||
cmake ..
|
||||
|
|
@ -20,8 +23,9 @@ BUILD_PACKAGES="git cmake make patch wget sudo gcc g++ libusb-dev fftw-dev"
|
|||
apk add --no-cache $STATIC_PACKAGES
|
||||
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
||||
|
||||
git clone --depth 1 https://github.com/mossmann/hackrf.git
|
||||
git clone https://github.com/mossmann/hackrf.git
|
||||
cd hackrf
|
||||
git checkout 06eb9192cd348083f5f7de9c0da9ead276020011
|
||||
cmakebuild host
|
||||
cd ..
|
||||
rm -rf hackrf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue