
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.
10 lines
242 B
Bash
Executable File
10 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mkdir -p deb/DIST-clang
|
|
tar xf *.tar.bz2 -C deb/DIST-clang --strip-components=1
|
|
(cd deb/DIST-clang && scan-build -o ../CLANG --html-title="Analysis of i3 v$(git describe --tags)" make -j8)
|
|
mv deb/CLANG/*/* deb/CLANG
|