Add VSIX build workflow with artifact upload#8
Merged
ram-nadella merged 10 commits intomainfrom Jun 9, 2025
Merged
Conversation
This workflow builds the VSIX package after both pylight and pydance tests pass successfully, then uploads it as a downloadable artifact. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Combine pylight and pydance test workflows into a single ci.yml - Run pylight and pydance tests in parallel - Build VSIX only after both test jobs succeed - Remove duplicate test runs and improve efficiency 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Use cargo-zigbuild to cross-compile pylight for aarch64-apple-darwin - Build ARM64 macOS binary for M-series Macs on Linux runners - Avoids expensive macOS runners while supporting Apple Silicon 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
cargo-zigbuild requires Zig to be installed for cross-compilation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Replace cargo-zigbuild with cross for simpler setup - cross handles C dependencies (tree-sitter) automatically - No need for Zig installation - Cleaner and more standard Rust cross-compilation approach 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Build native binaries on each platform (Linux x64, macOS ARM64) - Create platform-specific VSIX artifacts - Fix xvfb usage for non-Linux platforms - This properly supports M-series Macs with native ARM64 binaries 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Remove --no-dependencies flag to include node_modules in VSIX - Add .vscodeignore to control what gets packaged - Add VSIX installation test in CI - Add integrity test suite to verify dependencies are packaged - This fixes the "Cannot find module" error when installing VSIX 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Use dynamic import instead of require to satisfy TypeScript linter 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Apply prettier formatting to satisfy format check 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Add quotes around wget URL to handle special characters properly 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Test plan
🤖 Generated with Claude Code