-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: R-16 toolchain pin + reconciliation #198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
d12d56a
chore: rename agent_instructions to bot_directives for spec alignment
hyperpolymath d0bccff
proofs(lean4) + tests: A-12 path-traversal containment
hyperpolymath 714072a
ci: realign validation matrix with current support
hyperpolymath fbf39c1
fix(ci): estate-wide structural CI fixes
hyperpolymath 4512577
fix(ci): switch to permissionless reusable workflow
hyperpolymath aa57711
chore: estate-wide security compliance
hyperpolymath 3f7a918
chore: remove duplicate GOVERNANCE files, keep GOVERNANCE.md
hyperpolymath 18bb780
fix(ci): update reusable workflow SHAs to @7fdc2705df74b4e352d2a1cde3…
hyperpolymath f67ddf1
fix(ci): update reusable workflow SHAs to @7fdc2705df74b4e352d2a1cde3…
hyperpolymath ed4c1a0
fix(ci): update reusable workflow SHAs to @7fdc2705df74b4e352d2a1cde3…
hyperpolymath 1ed7572
fix(ci): add required permissions for reusable workflows (Bug B)
hyperpolymath 8ed1b84
Merge remote-tracking branch 'origin/ci/secret-scanner-caller-perms'
hyperpolymath 7675d50
Merge remote-tracking branch 'origin/fix/ci-426-batch2'
hyperpolymath e4e4c46
Merge remote-tracking branch 'origin/proofs/a12-path-traversal-contai…
hyperpolymath 16b1025
Merge remote-tracking branch 'origin/proofs/idris2-130-hardware-erase…
hyperpolymath 639e8ee
chore(toolchain): keep .tool-versions -> .mise.toml pin conversion (R…
hyperpolymath fd2566a
chore: reconcile local history with origin (R-16/R-24)
hyperpolymath File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| [tools] | ||
| # = "SPDX-License-Identifier: MPL-2.0" | ||
| # = "asdf version management" | ||
| # = "Run asdf install to install all tools" | ||
| # = "Primary runtime" | ||
| deno = "2.1.4" | ||
| zig = "0.13.0" | ||
| # = "Language runtimes" | ||
| elixir = "1.17.2" | ||
| erlang = "27.2.1" | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: hyperpolymath/valence-shell
Length of output: 2765
🌐 Web query:
mise documentation mise install .mise.toml [tools] configuration💡 Result:
In mise, the
[tools]section of yourmise.tomlfile is used to define the development tools and versions required for your project [1][2]. ### The[tools]Configuration You can specify tools and their versions directly inmise.toml[3][4]:toml [tools] # Specify single or multiple versions node = '24' python = ['3.10', '3.11'] # You can also pass options to plugins python = {version='3.10', virtualenv='.venv'}Tools defined here are "active" within that directory and its subdirectories [5]. Besides versions, you can configure tool-specific behavior, such as: *os: Restrict installation to certain operating systems [1][6]. *depends: Define install order relative to other tools in the configuration [1][6]. *install_env: Environment variables to set during installation [1][6]. *postinstall: Commands to run after the tool finishes installing [1][6]. ###mise installvs.mise useIt is important to distinguish between how you manage these tools: *mise install: This command installs the tools defined in yourmise.tomlfile into~/.local/share/mise/installs/but does not activate them (they will not be added to your PATH) [7][8]. If you run it without arguments, it installs everything listed in yourmise.toml[7]. *mise use: This is the recommended command for project setup [5]. It simultaneously installs the specified tool version and automatically updates yourmise.tomlto "activate" it for that directory [5][9]. For example,mise use node@20will addnode = "20"to yourmise.tomland ensure it is installed [5][9]. Configuration files are resolved hierarchically [4]; mise will look for amise.tomlin the current directory and walk up the parent directories to merge configurations [4]. Global settings can be defined in~/.config/mise/config.toml[3][4].Citations:
Update the installation instruction to use
mise..mise.tomldefines the project tools under[tools]. Update the comments to referencemiseandmise install.🤖 Prompt for AI Agents