use explicit revisions so i can use the docker build cache

This commit is contained in:
Jakob Ketterl
2019-12-30 00:11:27 +01:00
parent 6bcdd4007a
commit 6297b8f277
8 changed files with 54 additions and 27 deletions

View File

@ -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,16 +23,16 @@ BUILD_PACKAGES="git libusb-dev cmake make gcc musl-dev g++ linux-headers"
apk add --no-cache $STATIC_PACKAGES
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone --depth 1 https://github.com/airspy/airspyone_host.git
cmakebuild airspyone_host
git clone https://github.com/airspy/airspyone_host.git
cmakebuild airspyone_host bceca18f9e3a5f89cff78c4d949c71771d92dfd3
git clone --depth 1 https://github.com/pothosware/SoapyAirspy.git
cmakebuild SoapyAirspy
git clone https://github.com/pothosware/SoapyAirspy.git
cmakebuild SoapyAirspy 99756be5c3413a2d447baf70cb5a880662452655
git clone --depth 1 https://github.com/airspy/airspyhf.git
cmakebuild airspyhf
git clone https://github.com/airspy/airspyhf.git
cmakebuild airspyhf 613852a2bb64af42690bf9be2201826af69a9475
git clone --depth 1 https://github.com/pothosware/SoapyAirspyHF.git
cmakebuild SoapyAirspyHF
git clone https://github.com/pothosware/SoapyAirspyHF.git
cmakebuild SoapyAirspyHF 54f5487dd96207540b2dd562ff9e718e0588770b
apk del .build-deps