monorepo/build.sh

50 lines
754 B
Bash
Raw Normal View History

2023-08-07 18:51:45 +00:00
#!/usr/bin/env bash
set -euo pipefail
2023-08-07 20:20:18 +00:00
RUST_ALL_TARGETS=(
"dashboard"
"ifc"
"memorycache"
"geo-types"
"fluent-ergonomics"
"cyberpunk-splash"
"screenplay"
"emseries"
"coordinates"
"flow"
"sgf"
"changeset"
2023-08-07 20:37:01 +00:00
"hex-grid"
2023-08-07 20:20:18 +00:00
)
build_rust_targets() {
local CMD=$1
local TARGETS=${@/$CMD}
for target in $TARGETS; do
MODULE=$target CMD=$CMD ./builders/rust.sh
done
}
2023-08-07 18:51:45 +00:00
export CARGO=`which cargo`
if [ -z "${TARGET-}" ]; then
TARGET="all"
2023-08-07 18:51:45 +00:00
fi
if [ -z "${CMD-}" ]; then
CMD="release"
fi
2023-08-07 20:20:18 +00:00
if [ "${CMD}" == "clean" ]; then
cargo clean
exit 0
fi
if [ "${TARGET}" == "all" ]; then
2023-08-07 20:20:18 +00:00
build_rust_targets $CMD ${RUST_ALL_TARGETS[*]}
else
build_rust_targets $CMD $TARGET
fi