build: Build libks before FreeSWITCH

This commit is contained in:
Anton Georgiev 2021-10-25 18:35:11 +00:00
parent 1b9a14e0e1
commit 2cb583b19f
2 changed files with 18 additions and 2 deletions

View File

@ -11,8 +11,8 @@ stages:
# define which docker image to use for builds
default:
image: gitlab.senfcall.de:5050/senfcall-public/docker-bbb-build:v2021-10-17
image: gitlab.senfcall.de:5050/senfcall-public/docker-bbb-build:v2021-10-25
# This stage uses git to find out since when each package has been unmodified.
# it then checks an API endpoint on the package server to find out for which of
# these versions a build exists. If a viable build (from a commit where the

View File

@ -87,6 +87,22 @@ fi
popd
# spandsp end
# libks start
if [ ! -d libks ]; then
git clone https://github.com/signalwire/libks.git
fi
cd libks/
git pull
cmake .
make
make install
cd ..
# libks end
ldconfig
# we already cloned the FS repo in freeswitch.placeholder.sh