mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
7a1ceee4e7
Simply adding another OS / environment on which we test building of Subsurface-mobile Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
10 lines
277 B
Bash
10 lines
277 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
docker exec -t builder subsurface/scripts/build.sh -both 2>&1 | tee build.log
|
|
# fail the build if we didn't create the target binary
|
|
grep /workspace/install-root/bin/subsurface build.log
|
|
grep /workspace/install-root/bin/subsurface-mobile build.log
|
|
|