subsurface/scripts/qt55/travisbuild.sh
Dirk Hohndel 96611c630f Travis: make qt55 build report build failures correctly
The proxy for this is a check to see if the Subsurface binary was
created (in which case we assume that the build succeeded).

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2018-04-15 16:05:50 -07:00

9 lines
219 B
Bash

#!/bin/bash
set -x
set -e
docker exec -t builder subsurface/scripts/build.sh -desktop 2>&1 | tee build.log
# fail the build if we didn't create the target binary
grep /workspace/install-root/bin/subsurface build.log