TOOLS-4102 Add a mise.toml with all of our tools#895
Merged
Conversation
Collaborator
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
fec1b39 to
344ea49
Compare
autarch
commented
Feb 25, 2026
Collaborator
Author
There was a problem hiding this comment.
This is copied from https://mise.run. I just don't want to do the curl ... | sh thing in the tools CI.
1d93133 to
6540086
Compare
6540086 to
a2a3687
Compare
This adds a `mise.toml`, as well as some infrastructure for installing mise itself. However, nothing uses this yet. That will come in follow-up PRs.
a2a3687 to
8202f34
Compare
nickweinberger
approved these changes
Mar 2, 2026
Collaborator
nickweinberger
left a comment
There was a problem hiding this comment.
LGTM since it's not being used yet, although I think I did notice one problem in mise.run.sh.
| # tar is bsdtar or version is >= 1.31 | ||
| if tar --version | grep -q 'bsdtar' && command -v zstd >/dev/null 2>&1; then | ||
| true | ||
| elif tar --version | grep -q '1\.(3[1-9]|[4-9][0-9]'; then |
Collaborator
There was a problem hiding this comment.
regex is missing a closing ) right, so won't this always fall back?
Collaborator
There was a problem hiding this comment.
Know you just copied this but that seems off.
Collaborator
Author
There was a problem hiding this comment.
It's actually more broken than just missing a closing paren - jdx/mise#8430
Collaborator
Author
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.

This adds a
mise.toml, as well as some infrastructure for installing mise itself. However, nothing uses this yet. That will come in follow-up PRs.