mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
8617c75ace
Partial #506 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
36 lines
758 B
Bash
Executable file
36 lines
758 B
Bash
Executable file
#!/bin/bash -eu
|
|
#
|
|
# script/build
|
|
# mas
|
|
#
|
|
# Builds the Swift Package.
|
|
#
|
|
|
|
mas_dir="$(readlink -fn "$(dirname "${BASH_SOURCE:-"${0}"}")/..")"
|
|
|
|
if ! cd -- "${mas_dir}"; then
|
|
printf $'Error: Could not cd into mas directory: %s\n' "${mas_dir}" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Build for the host architecture by default.
|
|
ARCH=()
|
|
if [[ "${#}" -ge 1 && "${1}" == '--universal' ]]; then
|
|
ARCH=(
|
|
--arch arm64
|
|
--arch x86_64
|
|
)
|
|
fi
|
|
|
|
# Disable the manifest cache on Xcode 12.5 and later.
|
|
CACHE=()
|
|
if [[ "$(swift build --help)" =~ manifest-cache ]]; then
|
|
CACHE=(--manifest-cache none)
|
|
fi
|
|
|
|
echo "==> 🏗️ Building mas ($(script/version --write))"
|
|
swift build \
|
|
--configuration release \
|
|
"${ARCH[@]+"${ARCH[@]}"}" \
|
|
--disable-sandbox \
|
|
"${CACHE[@]+"${CACHE[@]}"}"
|