Skip to content

Comments

fix(registry): add Linux support for tuist#8102

Merged
jdx merged 1 commit intojdx:mainfrom
fortmarek:fix/tuist-linux-support
Feb 11, 2026
Merged

fix(registry): add Linux support for tuist#8102
jdx merged 1 commit intojdx:mainfrom
fortmarek:fix/tuist-linux-support

Conversation

@fortmarek
Copy link
Contributor

@fortmarek fortmarek commented Feb 11, 2026

Summary

  • Add "linux" to the os field in registry/tuist.toml so that mise use tuist@latest works on Linux (tuist added Linux support in v4.140.0)
  • Add the missing asset field to the Linux override in the vendored aqua registry, so the correct asset (tuist-linux-{arch}.tar.gz) is downloaded instead of the macOS tuist.zip

Details

Currently, mise use tuist@latest on Linux silently does nothing — the tool is installed but never activated (not added to PATH, shims don't work). This is because registry/tuist.toml restricts tuist to os = ["macos"], causing the toolset builder to skip it during resolution.

Additionally, the vendored aqua registry at crates/aqua-registry/aqua-registry/pkgs/tuist/tuist/registry.yaml is missing the asset field in the Linux override, which causes it to download the macOS tuist.zip instead of tuist-linux-{arch}.tar.gz and fail with "invalid gzip header". This fix is already merged upstream in aqua-registry (aquaproj/aqua-registry#48252) and will be synced automatically on the next release cycle, but is needed here for correctness until then.

Test plan

  • Verified mise use -g 'aqua:tuist/tuist@latest' && tuist version works on Linux aarch64 (Fedora CoreOS via Podman) — confirming the aqua registry entry with the asset fix is correct
  • Verified macOS behavior is unchanged (mise use tuist@latest continues to work)
  • CI test-tool job validates tuist version works on Linux x86_64 with both changes applied

🤖 Generated with Claude Code

Tuist added Linux support starting from version 4.140.0, but two things
prevented `mise use tuist@latest` from working on Linux:

1. `registry/tuist.toml` had `os = ["macos"]`, causing mise to silently
   skip the tool during toolset resolution on Linux.

2. The vendored aqua registry was missing the `asset` field in the Linux
   override, so even with explicit `aqua:tuist/tuist` usage, it would
   try to download the wrong asset name.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copilot AI review requested due to automatic review settings February 11, 2026 08:44
@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @fortmarek, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request addresses issues preventing the tuist tool from functioning correctly on Linux when managed by mise. It updates configuration files to explicitly support Linux, ensuring that tuist can be properly installed, activated, and its assets correctly downloaded on Linux systems, thereby extending its compatibility beyond macOS.

Highlights

  • Linux Support for Tuist: Enabled tuist to be used on Linux by adding "linux" to the supported operating systems in registry/tuist.toml, resolving an issue where the tool was installed but not activated on Linux.
  • Aqua Registry Configuration Update: Corrected the aqua-registry configuration for tuist on Linux by adding the asset field, ensuring the correct Linux-specific archive (tuist-linux-{arch}.tar.gz) is downloaded instead of the macOS tuist.zip.
Changelog
  • crates/aqua-registry/aqua-registry/pkgs/tuist/tuist/registry.yaml
    • Added the asset field with tuist-linux-{{.Arch}}.tar.gz to the Linux override section, ensuring the correct asset is downloaded for Linux.
  • registry/tuist.toml
    • Appended "linux" to the os array, explicitly enabling tuist support for Linux operating systems.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request aims to add Linux support for tuist. The change to registry/tuist.toml is correct. The change in crates/aqua-registry/aqua-registry/pkgs/tuist/tuist/registry.yaml correctly specifies the Linux asset, but appears to be missing an update to supported_envs to include linux, which is necessary for the aqua backend to enable Linux support. I've left a comment with details.

arm64: aarch64
overrides:
- goos: linux
asset: tuist-linux-{{.Arch}}.tar.gz
Copy link
Contributor

Choose a reason for hiding this comment

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

high

This correctly specifies the asset for Linux. However, the change seems incomplete. For aqua to recognize that this package supports Linux, 'linux' must also be added to the supported_envs list for this version block (a few lines below). Without this, the Linux support will not be enabled for the aqua backend.

Copy link
Contributor Author

@fortmarek fortmarek Feb 11, 2026

Choose a reason for hiding this comment

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

supported_envs already includes linux at lines 32-34 of the same file — the bot is reviewing the diff in isolation without the surrounding context.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This pull request adds Linux support for the tuist tool in mise's registry. According to the PR description, tuist added Linux support in v4.140.0, but mise was still restricting it to macOS only, causing silent failures when users tried to use it on Linux.

Changes:

  • Added "linux" to the os field in registry/tuist.toml to enable Linux platform support
  • Added the missing asset field to the Linux override in the aqua registry to ensure the correct Linux asset (tuist-linux-{arch}.tar.gz) is downloaded instead of the macOS tuist.zip

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
registry/tuist.toml Added "linux" to os field to enable Linux platform support
crates/aqua-registry/aqua-registry/pkgs/tuist/tuist/registry.yaml Added asset field to Linux override for correct asset download

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@fortmarek fortmarek force-pushed the fix/tuist-linux-support branch from 39c1873 to 3e5c1eb Compare February 11, 2026 09:09
@jdx jdx merged commit 7ab84df into jdx:main Feb 11, 2026
54 of 67 checks passed
jdx pushed a commit that referenced this pull request Feb 12, 2026
### 🚀 Features

- **(activate)** add shims directory as fallback when auto-install is
enabled by @ctaintor in [#8106](#8106)
- **(env)** add `tools` variable to tera template context by @jdx in
[#8108](#8108)
- **(set)** add --stdin flag for multiline environment variables by @jdx
in [#8110](#8110)

### 🐛 Bug Fixes

- **(backend)** improve conda patchelf and dependency resolution for
complex packages by @jdx in
[#8087](#8087)
- **(ci)** fix validate-new-tools grep pattern for test field by @jdx in
[#8100](#8100)
- **(config)** make MISE_OFFLINE work correctly by gracefully skipping
network calls by @jdx in [#8109](#8109)
- **(github)** skip v prefix for "latest" version by @jdx in
[#8105](#8105)
- **(gitlab)** resolve tool options from config for aliased tools by
@jdx in [#8084](#8084)
- **(install)** use version_expr for Flutter to fix version resolution
by @jdx in [#8081](#8081)
- **(registry)** add Linux support for tuist by @fortmarek in
[#8102](#8102)
- **(release)** write release notes to file instead of capturing stdout
by @jdx in [#8086](#8086)
- **(upgrade)** tools are not uninstalled properly due to outdated
symlink by @roele in [#8099](#8099)
- **(upgrade)** ensure uninstallation failure does not leave invalid
symlinks by @roele in [#8101](#8101)
- SLSA for in-toto statement with no signatures by @gerhard in
[#8094](#8094)
- Vfox Plugin Auto-Installation for Environment Directives by @pose in
[#8035](#8035)

### 📚 Documentation

- use mise activate for PowerShell in getting-started by @rileychh in
[#8112](#8112)

### 📦 Registry

- add conda backend for mysql by @jdx in
[#8080](#8080)
- add conda backends for 10 asdf-only tools by @jdx in
[#8083](#8083)
- added podman-tui by @tony-sol in
[#8098](#8098)

### Chore

- sort settings.toml alphabetically and add test by @jdx in
[#8111](#8111)

### New Contributors

- @ctaintor made their first contribution in
[#8106](#8106)
- @rileychh made their first contribution in
[#8112](#8112)
- @fortmarek made their first contribution in
[#8102](#8102)
- @pose made their first contribution in
[#8035](#8035)
- @gerhard made their first contribution in
[#8094](#8094)

## 📦 Aqua Registry Updates

#### New Packages (2)

- [`entireio/cli`](https://github.com/entireio/cli)
-
[`rmitchellscott/reManager`](https://github.com/rmitchellscott/reManager)

#### Updated Packages (1)

- [`atuinsh/atuin`](https://github.com/atuinsh/atuin)
jdx pushed a commit that referenced this pull request Feb 12, 2026
### 🚀 Features

- **(activate)** add shims directory as fallback when auto-install is
enabled by @ctaintor in [#8106](#8106)
- **(env)** add `tools` variable to tera template context by @jdx in
[#8108](#8108)
- **(set)** add --stdin flag for multiline environment variables by @jdx
in [#8110](#8110)

### 🐛 Bug Fixes

- **(backend)** improve conda patchelf and dependency resolution for
complex packages by @jdx in
[#8087](#8087)
- **(ci)** fix validate-new-tools grep pattern for test field by @jdx in
[#8100](#8100)
- **(config)** make MISE_OFFLINE work correctly by gracefully skipping
network calls by @jdx in [#8109](#8109)
- **(github)** skip v prefix for "latest" version by @jdx in
[#8105](#8105)
- **(gitlab)** resolve tool options from config for aliased tools by
@jdx in [#8084](#8084)
- **(install)** use version_expr for Flutter to fix version resolution
by @jdx in [#8081](#8081)
- **(registry)** add Linux support for tuist by @fortmarek in
[#8102](#8102)
- **(release)** write release notes to file instead of capturing stdout
by @jdx in [#8086](#8086)
- **(upgrade)** tools are not uninstalled properly due to outdated
symlink by @roele in [#8099](#8099)
- **(upgrade)** ensure uninstallation failure does not leave invalid
symlinks by @roele in [#8101](#8101)
- SLSA for in-toto statement with no signatures by @gerhard in
[#8094](#8094)
- Vfox Plugin Auto-Installation for Environment Directives by @pose in
[#8035](#8035)

### 📚 Documentation

- use mise activate for PowerShell in getting-started by @rileychh in
[#8112](#8112)

### 📦 Registry

- add conda backend for mysql by @jdx in
[#8080](#8080)
- add conda backends for 10 asdf-only tools by @jdx in
[#8083](#8083)
- added podman-tui by @tony-sol in
[#8098](#8098)

### Chore

- sort settings.toml alphabetically and add test by @jdx in
[#8111](#8111)

### New Contributors

- @ctaintor made their first contribution in
[#8106](#8106)
- @rileychh made their first contribution in
[#8112](#8112)
- @fortmarek made their first contribution in
[#8102](#8102)
- @pose made their first contribution in
[#8035](#8035)
- @gerhard made their first contribution in
[#8094](#8094)

## 📦 Aqua Registry Updates

#### New Packages (2)

- [`entireio/cli`](https://github.com/entireio/cli)
-
[`rmitchellscott/reManager`](https://github.com/rmitchellscott/reManager)

#### Updated Packages (1)

- [`atuinsh/atuin`](https://github.com/atuinsh/atuin)
lucasew pushed a commit to lucasew/CONTRIB-mise that referenced this pull request Feb 18, 2026
## Summary
- Add `"linux"` to the `os` field in `registry/tuist.toml` so that `mise
use tuist@latest` works on Linux (tuist added Linux support in v4.140.0)
- Add the missing `asset` field to the Linux override in the vendored
aqua registry, so the correct asset (`tuist-linux-{arch}.tar.gz`) is
downloaded instead of the macOS `tuist.zip`

## Details

Currently, `mise use tuist@latest` on Linux silently does nothing — the
tool is installed but never activated (not added to PATH, shims don't
work). This is because `registry/tuist.toml` restricts tuist to `os =
["macos"]`, causing the toolset builder to skip it during resolution.

Additionally, the vendored aqua registry at
`crates/aqua-registry/aqua-registry/pkgs/tuist/tuist/registry.yaml` is
missing the `asset` field in the Linux override, which causes it to
download the macOS `tuist.zip` instead of `tuist-linux-{arch}.tar.gz`
and fail with "invalid gzip header". This fix is already merged upstream
in aqua-registry (aquaproj/aqua-registry#48252) and will be synced
automatically on the next release cycle, but is needed here for
correctness until then.

## Test plan
- [x] Verified `mise use -g 'aqua:tuist/tuist@latest' && tuist version`
works on Linux aarch64 (Fedora CoreOS via Podman) — confirming the aqua
registry entry with the `asset` fix is correct
- [x] Verified macOS behavior is unchanged (`mise use tuist@latest`
continues to work)
- [ ] CI `test-tool` job validates `tuist version` works on Linux x86_64
with both changes applied

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
lucasew pushed a commit to lucasew/CONTRIB-mise that referenced this pull request Feb 18, 2026
### 🚀 Features

- **(activate)** add shims directory as fallback when auto-install is
enabled by @ctaintor in [jdx#8106](jdx#8106)
- **(env)** add `tools` variable to tera template context by @jdx in
[jdx#8108](jdx#8108)
- **(set)** add --stdin flag for multiline environment variables by @jdx
in [jdx#8110](jdx#8110)

### 🐛 Bug Fixes

- **(backend)** improve conda patchelf and dependency resolution for
complex packages by @jdx in
[jdx#8087](jdx#8087)
- **(ci)** fix validate-new-tools grep pattern for test field by @jdx in
[jdx#8100](jdx#8100)
- **(config)** make MISE_OFFLINE work correctly by gracefully skipping
network calls by @jdx in [jdx#8109](jdx#8109)
- **(github)** skip v prefix for "latest" version by @jdx in
[jdx#8105](jdx#8105)
- **(gitlab)** resolve tool options from config for aliased tools by
@jdx in [jdx#8084](jdx#8084)
- **(install)** use version_expr for Flutter to fix version resolution
by @jdx in [jdx#8081](jdx#8081)
- **(registry)** add Linux support for tuist by @fortmarek in
[jdx#8102](jdx#8102)
- **(release)** write release notes to file instead of capturing stdout
by @jdx in [jdx#8086](jdx#8086)
- **(upgrade)** tools are not uninstalled properly due to outdated
symlink by @roele in [jdx#8099](jdx#8099)
- **(upgrade)** ensure uninstallation failure does not leave invalid
symlinks by @roele in [jdx#8101](jdx#8101)
- SLSA for in-toto statement with no signatures by @gerhard in
[jdx#8094](jdx#8094)
- Vfox Plugin Auto-Installation for Environment Directives by @pose in
[jdx#8035](jdx#8035)

### 📚 Documentation

- use mise activate for PowerShell in getting-started by @rileychh in
[jdx#8112](jdx#8112)

### 📦 Registry

- add conda backend for mysql by @jdx in
[jdx#8080](jdx#8080)
- add conda backends for 10 asdf-only tools by @jdx in
[jdx#8083](jdx#8083)
- added podman-tui by @tony-sol in
[jdx#8098](jdx#8098)

### Chore

- sort settings.toml alphabetically and add test by @jdx in
[jdx#8111](jdx#8111)

### New Contributors

- @ctaintor made their first contribution in
[jdx#8106](jdx#8106)
- @rileychh made their first contribution in
[jdx#8112](jdx#8112)
- @fortmarek made their first contribution in
[jdx#8102](jdx#8102)
- @pose made their first contribution in
[jdx#8035](jdx#8035)
- @gerhard made their first contribution in
[jdx#8094](jdx#8094)

## 📦 Aqua Registry Updates

#### New Packages (2)

- [`entireio/cli`](https://github.com/entireio/cli)
-
[`rmitchellscott/reManager`](https://github.com/rmitchellscott/reManager)

#### Updated Packages (1)

- [`atuinsh/atuin`](https://github.com/atuinsh/atuin)
lucasew pushed a commit to lucasew/CONTRIB-mise that referenced this pull request Feb 18, 2026
### 🚀 Features

- **(activate)** add shims directory as fallback when auto-install is
enabled by @ctaintor in [jdx#8106](jdx#8106)
- **(env)** add `tools` variable to tera template context by @jdx in
[jdx#8108](jdx#8108)
- **(set)** add --stdin flag for multiline environment variables by @jdx
in [jdx#8110](jdx#8110)

### 🐛 Bug Fixes

- **(backend)** improve conda patchelf and dependency resolution for
complex packages by @jdx in
[jdx#8087](jdx#8087)
- **(ci)** fix validate-new-tools grep pattern for test field by @jdx in
[jdx#8100](jdx#8100)
- **(config)** make MISE_OFFLINE work correctly by gracefully skipping
network calls by @jdx in [jdx#8109](jdx#8109)
- **(github)** skip v prefix for "latest" version by @jdx in
[jdx#8105](jdx#8105)
- **(gitlab)** resolve tool options from config for aliased tools by
@jdx in [jdx#8084](jdx#8084)
- **(install)** use version_expr for Flutter to fix version resolution
by @jdx in [jdx#8081](jdx#8081)
- **(registry)** add Linux support for tuist by @fortmarek in
[jdx#8102](jdx#8102)
- **(release)** write release notes to file instead of capturing stdout
by @jdx in [jdx#8086](jdx#8086)
- **(upgrade)** tools are not uninstalled properly due to outdated
symlink by @roele in [jdx#8099](jdx#8099)
- **(upgrade)** ensure uninstallation failure does not leave invalid
symlinks by @roele in [jdx#8101](jdx#8101)
- SLSA for in-toto statement with no signatures by @gerhard in
[jdx#8094](jdx#8094)
- Vfox Plugin Auto-Installation for Environment Directives by @pose in
[jdx#8035](jdx#8035)

### 📚 Documentation

- use mise activate for PowerShell in getting-started by @rileychh in
[jdx#8112](jdx#8112)

### 📦 Registry

- add conda backend for mysql by @jdx in
[jdx#8080](jdx#8080)
- add conda backends for 10 asdf-only tools by @jdx in
[jdx#8083](jdx#8083)
- added podman-tui by @tony-sol in
[jdx#8098](jdx#8098)

### Chore

- sort settings.toml alphabetically and add test by @jdx in
[jdx#8111](jdx#8111)

### New Contributors

- @ctaintor made their first contribution in
[jdx#8106](jdx#8106)
- @rileychh made their first contribution in
[jdx#8112](jdx#8112)
- @fortmarek made their first contribution in
[jdx#8102](jdx#8102)
- @pose made their first contribution in
[jdx#8035](jdx#8035)
- @gerhard made their first contribution in
[jdx#8094](jdx#8094)

## 📦 Aqua Registry Updates

#### New Packages (2)

- [`entireio/cli`](https://github.com/entireio/cli)
-
[`rmitchellscott/reManager`](https://github.com/rmitchellscott/reManager)

#### Updated Packages (1)

- [`atuinsh/atuin`](https://github.com/atuinsh/atuin)
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.

2 participants