mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-17 14:15:29 +01:00
* 🔨 Add --arch parameter for selective architecture builds * 🔨 Add --variant parameter for selective architecture builds * 🔨 Add --variant parameter for selective architecture builds * 🔨 Add --variant parameter for selective architecture builds * 🔨 Add --variant parameter for selective architecture builds * 🔨 Add --variant parameter for selective architecture builds * 🔨 Add --variant parameter for selective architecture builds * 🔨 Add --target parameter for selective architecture builds * 🔨 Add --target parameter for selective architecture builds
88 lines
2.1 KiB
Bash
Executable file
88 lines
2.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
echo 'TIP: This script must be run from the project root directory'
|
|
echo 'Usage: ./scripts/darwin-build.sh [--target=<target>]'
|
|
echo 'Options:'
|
|
echo ' --target=<target> Build target: amd64, arm64, or all (default: all)'
|
|
echo
|
|
|
|
TARGET='all'
|
|
|
|
validate_target() {
|
|
if [[ -z "$1" ]]; then
|
|
echo 'Error: --target option requires a value'
|
|
echo 'Usage: --target=<target>'
|
|
echo 'Examples: --target=amd64'
|
|
exit 1
|
|
elif [[ "$1" != 'amd64' && "$1" != 'arm64' && "$1" != 'all' ]]; then
|
|
echo "Error: Invalid target '$1'"
|
|
echo 'Valid targets are: amd64, arm64, all'
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case $1 in
|
|
--target=*)
|
|
TARGET="${1#*=}"
|
|
validate_target "$TARGET"
|
|
shift
|
|
;;
|
|
--target)
|
|
TARGET="$2"
|
|
validate_target "$TARGET"
|
|
[ -n "$2" ] && shift 2 || shift
|
|
;;
|
|
*)
|
|
# Skip unknown options
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
echo 'Building UI'
|
|
cd app || exit
|
|
pnpm install && pnpm run build
|
|
cd .. || exit
|
|
|
|
echo 'Cleaning Builds'
|
|
rm -rf app/build
|
|
rm -rf app/kernel-darwin
|
|
rm -rf app/kernel-darwin-arm64
|
|
|
|
echo 'Building Kernel'
|
|
|
|
cd kernel || exit
|
|
go version
|
|
export GO111MODULE=on
|
|
export GOPROXY=https://mirrors.aliyun.com/goproxy/
|
|
export CGO_ENABLED=1
|
|
|
|
if [[ "$TARGET" == 'amd64' || "$TARGET" == 'all' ]]; then
|
|
echo 'Building Kernel amd64'
|
|
export GOOS=darwin
|
|
export GOARCH=amd64
|
|
go build --tags fts5 -v -o "../app/kernel-darwin/SiYuan-Kernel" -ldflags "-s -w" .
|
|
fi
|
|
|
|
if [[ "$TARGET" == 'arm64' || "$TARGET" == 'all' ]]; then
|
|
echo 'Building Kernel arm64'
|
|
export GOOS=darwin
|
|
export GOARCH=arm64
|
|
go build --tags fts5 -v -o "../app/kernel-darwin-arm64/SiYuan-Kernel" -ldflags "-s -w" .
|
|
fi
|
|
cd .. || exit
|
|
|
|
cd app || exit
|
|
|
|
if [[ "$TARGET" == 'amd64' || "$TARGET" == 'all' ]]; then
|
|
echo 'Building Electron App amd64'
|
|
pnpm run dist-darwin
|
|
fi
|
|
|
|
if [[ "$TARGET" == 'arm64' || "$TARGET" == 'all' ]]; then
|
|
echo 'Building Electron App arm64'
|
|
pnpm run dist-darwin-arm64
|
|
fi
|
|
|
|
cd .. || exit
|