Skip to content

docs: add linux arm64 download link to manual installation steps#574

Open
zimeg wants to merge 2 commits into
mainfrom
docs-linux-arm64-install
Open

docs: add linux arm64 download link to manual installation steps#574
zimeg wants to merge 2 commits into
mainfrom
docs-linux-arm64-install

Conversation

@zimeg
Copy link
Copy Markdown
Member

@zimeg zimeg commented Jun 4, 2026

Changelog

N/A - published soon after merge following Linux ARM64 support 🚀

Summary

This PR adds a separate Linux ARM64 download link to the manual installation steps, alongside the existing x86_64 link. This follows up on #539 which added Linux ARM64 builds to the release pipeline but did not update the docs to expose the new download path.

Testing

  • Confirmed the new download URL patterns matches the expected build output
  • Confirm the rendered docs page shows both Linux links
  • Check for correct docgen outputs alongside next release

Notes

The existing linux_64-bit URL is kept as a fallback in the release pipeline (it maps to amd64), but the docs now point directly to the linux_amd64 release for clarity.

Requirements

Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
@codecov
Copy link
Copy Markdown

codecov Bot commented Jun 4, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 71.66%. Comparing base (f0e47ee) to head (cc6c15d).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #574   +/-   ##
=======================================
  Coverage   71.66%   71.66%           
=======================================
  Files         226      226           
  Lines       19148    19148           
=======================================
  Hits        13723    13723           
  Misses       4218     4218           
  Partials     1207     1207           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Copy link
Copy Markdown
Member Author

@zimeg zimeg left a comment

Choose a reason for hiding this comment

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

📫 A few confirmations of link and note for reviewers!

🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz)
🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_amd64.tar.gz)

🐧 💪 [**Download for Linux ARM64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_arm64.tar.gz)
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

🔬 test: Confirmed this matches what we hope:

$ file ~/Downloads/slack_cli_4.2.0_linux_arm64/bin/slack
~/Downloads/slack_cli_4.2.0_linux_arm64/bin/slack: ELF 64-bit LSB executable, ARM aarch64, version 1 (SYSV), statically linked, Go BuildID=IfS03H2TGgiB_dxGrMrz/xnZMOMyoXg4H75Oak-QA/b8y9iu-Yd5i7RQcSZ6FF/xLDHpkzEw5n0M5w0PJXw, BuildID[sha1]=62efb0df4a3ac567873090e34dd37b519d1e0d73, stripped

🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_macOS_amd64.tar.gz)

🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz)
🐧 💾 [**Download for Linux x86_64 (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_amd64.tar.gz)
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

🦠 test: Also matching the build we expect:

$ file ~/Downloads/slack_cli_4.2.0_linux_amd64/bin/slack
~/Downloads/slack_cli_4.2.0_linux_amd64/bin/slack: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, Go BuildID=pFlRhTBO8x2isTI_p7jx/Yc-FjyGUx6DnWlQ5Gh6B/OncVdDiuvpLsOr3aqRa8/Kn9l7e4IdkNZO_NNrU_8, BuildID[sha1]=fc7823f53914fcb09d0cfc88c574103553fe6cbb, stripped


🍏 🪨 [**Download for macOS Intel (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_macOS_amd64.tar.gz)

🐧 💾 [**Download for Linux (.tar.gz)**](https://downloads.slack-edge.com/slack-cli/slack_cli_4.2.0_linux_64-bit.tar.gz)
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

🗣️ note: This remains available for updates from earlier version to 4.2.0 and changes of #539

@zimeg zimeg self-assigned this Jun 4, 2026
@zimeg zimeg added docs M-T: Documentation work only semver:patch Use on pull requests to describe the release version increment labels Jun 4, 2026
@zimeg zimeg added this to the Next Release milestone Jun 4, 2026
Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
@zimeg zimeg changed the title docs: add Linux ARM64 download link to manual installation steps docs: add linux arm64 download link to manual installation steps Jun 4, 2026
Copy link
Copy Markdown
Member Author

@zimeg zimeg left a comment

Choose a reason for hiding this comment

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

🔮 Another comment of recent changes.

Comment thread Makefile
Comment on lines +93 to +94
sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_linux_amd64\.tar\.gz#slack_cli_$(RELEASE_VERSION)_linux_amd64.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md
sed -i.bak -E "s#slack_cli_[0-9]+\.[0-9]+\.[0-9]+_linux_arm64\.tar\.gz#slack_cli_$(RELEASE_VERSION)_linux_arm64.tar.gz#" docs/guides/installing-the-slack-cli-for-mac-and-linux.md
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

📣 test: Confirmed this updates with make rc command toward next RC!

@zimeg zimeg marked this pull request as ready for review June 4, 2026 03:52
@zimeg zimeg requested review from a team as code owners June 4, 2026 03:52
@zimeg zimeg mentioned this pull request Jun 4, 2026
2 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

docs M-T: Documentation work only semver:patch Use on pull requests to describe the release version increment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant