summaryrefslogtreecommitdiff
path: root/docker/build.sh
diff options
context:
space:
mode:
authorpetter <39340152+petterhs@users.noreply.github.com>2021-01-23 01:51:07 +0100
committerpetter <39340152+petterhs@users.noreply.github.com>2021-01-23 11:11:14 +0100
commita028c39ddd9994a5932d231ead0007ec34bbdf95 (patch)
treecefc11536f2fea85ba22d6ab993d07a186d3b29a /docker/build.sh
parent7e27bc873315589ae4076780607720aa5278c5a1 (diff)
check for cmake build-success before running post-build.sh
Diffstat (limited to 'docker/build.sh')
-rwxr-xr-xdocker/build.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/docker/build.sh b/docker/build.sh
index f35c2f3a..8f0d0fa9 100755
--- a/docker/build.sh
+++ b/docker/build.sh
@@ -31,8 +31,8 @@ main() {
CmakeGenerate
CmakeBuild $target
-
- if [[ "$DISABLE_POSTBUILD" != "true" ]]; then
+ BUILD_RESULT=$?
+ if [ "$DISABLE_POSTBUILD" != "true" -a "$BUILD_RESULT" == 0 ]; then
source "$BUILD_DIR/post_build.sh"
fi
}
@@ -70,7 +70,9 @@ CmakeGenerate() {
CmakeBuild() {
local target="$1"
[[ -n "$target" ]] && target="--target $target"
- cmake --build "$BUILD_DIR" --config $BUILD_TYPE $target -- -j$(nproc)
+ if cmake --build "$BUILD_DIR" --config $BUILD_TYPE $target -- -j$(nproc)
+ then return 0; else return 1;
+ fi
}
[[ $SOURCED == "false" ]] && main "$@" || echo "Sourced!" \ No newline at end of file