mirror of
https://github.com/Hmbown/DeepSeek-TUI.git
synced 2026-09-03 06:50:13 +08:00
Promotes the fully gated non-benchmark candidate while preserving the benchmark tree exactly from the prior release-PR head. Signed-off-by: CodeWhale Bot <bot@codewhale.net>
18 lines
454 B
Bash
Executable File
18 lines
454 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
check="${repo_root}/scripts/release/check-npm-binary-version.sh"
|
|
|
|
"${check}" 0.9.11 0.9.11
|
|
|
|
if "${check}" 0.9.11 0.9.10 >/dev/null 2>&1; then
|
|
echo "expected an unapproved npm binary mismatch to fail" >&2
|
|
exit 1
|
|
fi
|
|
|
|
CODEWHALE_ALLOW_NPM_BINARY_MISMATCH=1 \
|
|
"${check}" 0.9.11 0.9.10 >/dev/null
|
|
|
|
echo "npm binary-version mismatch gate tests passed"
|