Skip to content

Prepare v0.1.3 linux arm64 release#26

Merged
willamhou merged 1 commit into
mainfrom
linux-arm64-release-0.1.3
May 24, 2026
Merged

Prepare v0.1.3 linux arm64 release#26
willamhou merged 1 commit into
mainfrom
linux-arm64-release-0.1.3

Conversation

@willamhou
Copy link
Copy Markdown
Owner

Summary

  • bump version metadata and docs to v0.1.3
  • add linux-arm64 release asset, npm platform package, download-plan/release-smoke, and Homebrew formula support
  • include linux-arm64 in Release Matrix and Release Smoke hosted workflows

Local Verification

  • cargo fmt --check
  • cargo test --lib -- --test-threads=1
  • cargo package --allow-dirty
  • npm --prefix npm test
  • npm pack --dry-run (from npm/)
  • platform npm pack --dry-run for npm/platforms/*
  • node scripts/check-secrets.js
  • node npm/scripts/check-version-sync.js
  • node packaging/homebrew/verify-formula.js
  • git diff --check
  • target/debug/deepseek update download-plan --version 0.1.3 --platform linux-arm64 --json

@github-actions
Copy link
Copy Markdown

DeepSeekCode review of PR #26 (Prepare v0.1.3 linux arm64 release)

Let me examine the PR diff and key files to understand the changes.

@willamhou willamhou merged commit 1c6d339 into main May 24, 2026
5 checks passed
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 7e0cdb7812

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

if Hardware::CPU.intel?
url "https://github.com/{repo}/releases/download/{tag}/deepseek-linux-x64.tar.gz"
sha256 "{linux_x64}"
elsif Hardware::CPU.arm?
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Restrict Linux ARM formula branch to 64-bit only

The Homebrew formula template uses Hardware::CPU.arm? for the Linux ARM branch, but that predicate matches any ARM CPU, including 32-bit ARM. This means a 32-bit ARM Linux host will be routed to the deepseek-linux-arm64.tar.gz artifact and then fail at runtime with an incompatible binary (Exec format error), even though the message says only x64/arm64 are published. The condition should be narrowed to arm64 (for example Hardware::CPU.arm64? or Hardware::CPU.arm? && Hardware::CPU.is_64_bit?).

Useful? React with 👍 / 👎.

@willamhou willamhou deleted the linux-arm64-release-0.1.3 branch May 24, 2026 04:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant