part 2: all the image builds

This commit is contained in:
Jakob Ketterl
2020-05-23 19:59:31 +02:00
parent cf4f1dce32
commit d9292587ec
12 changed files with 76 additions and 54 deletions

View File

@ -18,12 +18,14 @@ function cmakebuild() {
cd /tmp
BUILD_PACKAGES="git cmake make gcc g++ musl-dev"
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
BUILD_PACKAGES="git cmake make gcc g++"
apt-get update
apt-get -y install $BUILD_PACKAGES
git clone https://github.com/jketterl/owrx_connector.git
cmakebuild owrx_connector 3ffbdcccbe39a5675fd539d959e64885e521eae6
apk del .build-deps
apt-get -y purge --autoremove $BUILD_PACKAGES
apt-get clean
rm -rf /var/lib/apt/lists/*