fix(provider): add pty option to fix devpod setup#4
Open
thienandangthanh wants to merge 5 commits intomainfrom
Open
fix(provider): add pty option to fix devpod setup#4thienandangthanh wants to merge 5 commits intomainfrom
thienandangthanh wants to merge 5 commits intomainfrom
Conversation
645acae to
ac810ea
Compare
84ffb31 to
9992c2f
Compare
…issues
- Add Docker container detection using multiple indicators (/.dockerenv,
$container variable, cgroup checks, mountinfo)
- Automatically override 'binary' install method to 'tarball' when Docker
is detected to avoid AppImage execution failures
- Implement complete tarball download, extraction and installation workflow
- Add version-aware tarball asset naming (nvim-linux64.tar.gz for <v0.10.4,
nvim-linux-{arch}.tar.gz for >=v0.10.4)
- Support checksum verification for tarball downloads with version-specific
handling (direct .sha256sum files for <v0.11.3, GitHub API for >=v0.11.3)
- Handle extraction directory naming differences across Neovim versions
- Preserve existing AppImage functionality for non-containerized environments
Fixes universal AppImage extraction failures in Docker containers affecting
all Neovim versions (v0.9.1-v0.11.3+) due to missing FUSE support and
container runtime limitations.
Resolves: AppImage execution fails with "No such file or directory" in
Docker containers, leaving broken symlinks and unusable Neovim installations
…r_container field Add is_docker_container=false to expected workspace config in provider test to match the new field added by Docker container detection functionality.
ac810ea to
a801c12
Compare
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.
Fix problem that output of devpod can't be parsed after devpod v0.5.29
Cherry-picked commit from amitds1997#204 to test and verify with GitHub Actions.