LemonLDAP::NG Web SSO
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lemonldap-ng/scripts/ci-build-deb

18 lines
362 B

#!/bin/sh
set -xe
. /etc/os-release
dist=${ID:-unknown}
ver=${VERSION_ID:-unknown}
apt update --allow-releaseinfo-change
apt -y install devscripts dpkg-dev
mk-build-deps --install --remove \
--tool "apt-get -o Debug::pkgProblemResolver=yes -q -y" \
debian/control
make debian-packages
mkdir -p "result/$dist/$ver/"
cp /tmp/*deb "result/$dist/$ver/"