Add a build manifest for Debian packaging

This commit is contained in:
Denis Laxalde 2019-09-16 21:38:19 +02:00 committed by Drew DeVault
parent 23067adce5
commit 5b45046d34
1 changed files with 37 additions and 0 deletions

37
.builds/debian.yml Normal file
View File

@ -0,0 +1,37 @@
image: debian/sid
repositories:
sr.ht: https://mirror.sr.ht/debian/ sid main 6B1296C65B24472674E7B6520585B50AC6A4914D
packages:
- devscripts
- reprepro
- rsync
sources:
- https://git.sr.ht/~sircmpwn/todo.sr.ht
- https://git.sr.ht/~dlax/todo.sr.ht-deb
- https://git.sr.ht/~dlax/sr.ht-debbuilds
environment:
project: todo.sr.ht
remote: deploy@mirror.sr.ht
remote_path: /var/www/mirror.sr.ht/debian/
DEB_SIGN_KEYID: 6B1296C65B24472674E7B6520585B50AC6A4914D
DEBFULLNAME: sr.ht Debian autobuilder
DEBEMAIL: debian@sr.ht
secrets:
- fa00a8d3-7b63-42d5-8060-3bb31c3e3018 # ssh deploy key
- 0f260200-f6e7-4e3a-9bfb-805e6f36b2e6 # packages/repo signing key
tasks:
- archive: |
cd ${project}
pkgver=$(git describe)
echo "pkgver=$pkgver" >> ~/.buildenv
git archive -o ../"${project}_${pkgver}".orig.tar.gz \
--prefix="${project}-${pkgver}"/ HEAD
- package: |
cd sr.ht-debbuilds
./pkgkit build-version -li ${project} ${pkgver}
cd ~/${project}
git describe --exact-match HEAD || complete-build
- upload: |
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
cd ~/sr.ht-debbuilds
./pkgkit include ${project} ${pkgver}