blob: 16e09ea8f29321e39e6b8362900e91ef8cb78c8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#!/usr/bin/env bash
# Builds the Android or Linux app in the current build container.
# See the `container-run.sh` script for possible configuration.
set -eu
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REPO_DIR="$( cd "$SCRIPT_DIR/.." && pwd )"
cd "$SCRIPT_DIR"
source "$REPO_DIR/scripts/utils/log"
platform=${1-:""}
case $platform in
linux)
build_command=("./build.sh")
shift 1
;;
android)
build_command=("./android/build.sh")
shift 1
;;
*)
log_error "Invalid platform. Specify 'linux' or 'android' as first argument"
exit 1
esac
set -x
exec "$SCRIPT_DIR/container-run.sh" "$platform" "${build_command[@]}" "$@"
|