use explicit revisions so i can use the docker build cache
This commit is contained in:
@ -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,7 +23,7 @@ BUILD_PACKAGES="git cmake make patch wget sudo gcc g++"
|
||||
apk add --no-cache $STATIC_PACKAGES
|
||||
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
||||
|
||||
git clone --depth 1 https://github.com/pothosware/SoapySDR
|
||||
cmakebuild SoapySDR
|
||||
git clone https://github.com/pothosware/SoapySDR
|
||||
cmakebuild SoapySDR a489f3dca9d3ccd9b276b95a608ac3ef0299f635
|
||||
|
||||
apk del .build-deps
|
||||
|
Reference in New Issue
Block a user