测试DSML

This commit is contained in:
CJACK
2026-04-27 00:21:26 +08:00
parent 645fce41c8
commit 40d5e3ebb5
50 changed files with 1112 additions and 265 deletions

View File

@@ -0,0 +1,81 @@
#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
cd "$ROOT_DIR"
source "${ROOT_DIR}/scripts/release-targets.sh"
build_one() {
local tag="$1" build_version="$2" goos="$3" goarch="$4" goarm="$5" label="$6"
local pkg stage bin
pkg="ds2api_${tag}_${label}"
stage="dist/${pkg}"
bin="ds2api"
if [[ "$goos" == "windows" ]]; then
bin="ds2api.exe"
fi
echo "[release-archives] building ${label}"
rm -rf "$stage"
mkdir -p "${stage}/static"
if [[ "$goarm" == "-" ]]; then
CGO_ENABLED=0 GOOS="$goos" GOARCH="$goarch" \
go build -buildvcs=false -trimpath -ldflags="-s -w -X ds2api/internal/version.BuildVersion=${build_version}" -o "${stage}/${bin}" ./cmd/ds2api
else
CGO_ENABLED=0 GOOS="$goos" GOARCH="$goarch" GOARM="$goarm" \
go build -buildvcs=false -trimpath -ldflags="-s -w -X ds2api/internal/version.BuildVersion=${build_version}" -o "${stage}/${bin}" ./cmd/ds2api
fi
cp config.example.json .env.example LICENSE README.MD README.en.md "${stage}/"
cp -R static/admin "${stage}/static/admin"
if [[ "$goos" == "windows" ]]; then
(cd dist && zip -rq "${pkg}.zip" "${pkg}")
else
tar -C dist -czf "dist/${pkg}.tar.gz" "${pkg}"
fi
rm -rf "$stage"
}
if [[ "${1:-}" == "--build-one" ]]; then
shift
build_one "$@"
exit 0
fi
tag="${RELEASE_TAG:-}"
if [[ -z "$tag" && -f VERSION ]]; then
tag="$(tr -d '[:space:]' < VERSION)"
fi
if [[ -z "$tag" ]]; then
echo "release tag is empty; set RELEASE_TAG or provide VERSION." >&2
exit 1
fi
build_version="${BUILD_VERSION:-$tag}"
jobs="${RELEASE_BUILD_JOBS:-}"
if [[ -z "$jobs" ]]; then
if command -v nproc >/dev/null 2>&1; then
jobs="$(nproc)"
elif command -v sysctl >/dev/null 2>&1; then
jobs="$(sysctl -n hw.ncpu)"
else
jobs="2"
fi
fi
mkdir -p dist
if [[ "$jobs" -le 1 ]]; then
for target in "${DS2API_RELEASE_TARGETS[@]}"; do
read -r goos goarch goarm label <<< "$target"
build_one "$tag" "$build_version" "$goos" "$goarch" "$goarm" "$label"
done
else
printf '%s\n' "${DS2API_RELEASE_TARGETS[@]}" \
| xargs -L 1 -P "$jobs" bash "${ROOT_DIR}/scripts/build-release-archives.sh" --build-one "$tag" "$build_version"
fi

View File

@@ -11,7 +11,7 @@ cd "$(dirname "$0")/../webui"
# 检查 node_modules
if [ ! -d "node_modules" ]; then
echo "📦 Installing dependencies..."
npm install
npm ci --prefer-offline --no-audit
fi
# 构建

12
scripts/release-targets.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# goos goarch goarm package-label
DS2API_RELEASE_TARGETS=(
"linux amd64 - linux_amd64"
"linux arm64 - linux_arm64"
"linux arm 7 linux_armv7"
"darwin amd64 - darwin_amd64"
"darwin arm64 - darwin_arm64"
"windows amd64 - windows_amd64"
"windows arm64 - windows_arm64"
)