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.
13 lines
313 B
Bash
Executable File
13 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
|
|
cd testcases
|
|
# Try running the tests in parallel so that the common case (tests pass) is
|
|
# quick, but fall back to running them in sequence to make debugging easier.
|
|
if ! xvfb-run ./complete-run.pl
|
|
then
|
|
xvfb-run ./complete-run.pl --parallel=1 || (cat latest/complete-run.log; false)
|
|
fi
|