clean up obsolete files
This commit is contained in:
@ -1,11 +0,0 @@
|
||||
FROM debian:buster
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y cmake build-essential devscripts debsigs dh-python python3 python3-setuptools dh-systemd git && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ADD docker/scripts/build-debian-package.sh /
|
||||
|
||||
WORKDIR /
|
||||
|
||||
CMD ["/build-debian-package.sh"]
|
@ -1,19 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
git clone https://github.com/jketterl/openwebrx.git /openwebrx
|
||||
cd /openwebrx
|
||||
|
||||
debuild -uc -us
|
||||
|
||||
cd ..
|
||||
|
||||
export GPG_TTY=$(tty)
|
||||
gpg --batch --import <(echo "$SIGN_KEY")
|
||||
for DEB in `ls *.deb`; do
|
||||
debsigs --sign=maint -k $SIGN_KEY_ID $DEB
|
||||
done
|
||||
|
||||
dpkg-deb -I *.deb
|
||||
|
||||
tar cvfz packages.tar.gz *.deb
|
Reference in New Issue
Block a user