bd29745eff
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.
8 lines
345 B
Bash
Executable File
8 lines
345 B
Bash
Executable File
#!/bin/sh
|
|
# Returns a hash to be used as version number suffix for the i3/travis-base
|
|
# docker container. The hash is over all files which influence what gets
|
|
# installed in the container, so that any changes in what needs to be installed
|
|
# will result in a cache invalidation.
|
|
|
|
cat debian/control "$1" | sha256sum | dd bs=1 count=8 status=none
|