
The resulting packages are pushed to Debian repositories hosted on bintray.com. This is the first step to move away from our custom buildbot setup (see https://i3wm.org/docs/buildbot.html for details on that) towards infrastructure which is more standard (travis) and in the open.
16 lines
256 B
Bash
Executable File
16 lines
256 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
DEST=$1
|
|
|
|
make dist
|
|
# unpack dist tarball
|
|
mkdir -p "${DEST}"
|
|
tar xf *.tar.bz2 -C "${DEST}" --strip-components=1
|
|
cp -r debian "${DEST}"
|
|
cd "${DEST}"
|
|
debchange -m -l+g$(git describe --tags) 'Automatically built'
|
|
dpkg-buildpackage -b
|