build: migrate developer tasks to mise - #211
Open
binaryaaron wants to merge 19 commits into
Open
Conversation
binaryaaron
force-pushed
the
binaryaaron/add-mise
branch
from
July 13, 2026 21:40
2dae1b6 to
e7b17d2
Compare
binaryaaron
force-pushed
the
binaryaaron/add-mise
branch
from
August 4, 2026 23:09
e7b17d2 to
f1e7c30
Compare
binaryaaron
force-pushed
the
binaryaaron/chore/blocking-ty
branch
from
August 10, 2026 17:09
6251891 to
bb7e5c8
Compare
binaryaaron
force-pushed
the
binaryaaron/add-mise
branch
from
August 10, 2026 17:22
8f8ca82 to
8a8eeb4
Compare
binaryaaron
force-pushed
the
binaryaaron/add-mise
branch
2 times, most recently
from
August 11, 2026 23:54
c32e672 to
42ba54c
Compare
binaryaaron
marked this pull request as ready for review
August 11, 2026 23:56
Contributor
Greptile SummaryThe PR replaces duplicated Make and CI developer commands with a pinned Mise task graph while preserving isolated historical benchmark execution.
Confidence Score: 5/5The PR appears safe to merge. No blocking failure remains. Important Files Changed
|
binaryaaron
force-pushed
the
binaryaaron/add-mise
branch
from
August 12, 2026 22:42
ee83d41 to
9844192
Compare
andreatnvidia
requested changes
Aug 13, 2026
andreatnvidia
left a comment
Collaborator
There was a problem hiding this comment.
The Mise direction looks good. I found three blockers around historical releases, the signed bootstrap, and macOS benchmark execution. There’s also one non-blocking argument-forwarding bug in the same benchmark task.
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
Signed-off-by: Aaron Gonzales <aagonzales@nvidia.com>
binaryaaron
force-pushed
the
binaryaaron/add-mise
branch
from
August 14, 2026 18:13
3cea487 to
85357f2
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.
Why
Developer commands and CI duplicated task definitions across the Makefile and workflow files, which allowed local and CI behavior to drift. Mise provides one versioned task graph and pins the tools that execute it.
No linked issue required: maintainer-owned developer infrastructure migration.
Summary
mainsetup allfor every locked dependency group andtest:allfor unit plus opt-in E2E suitesCommand tree
mise run setup [runtime|dev|docs|notebooks|all]mise run deps:sync [runtime|dev|docs|notebooks|all]mise run hooks:installmise run checkandmise run check:*mise run check ::: testmise run test,mise run test:all,mise run test:coverage,mise run test:e2emise run docs:build,mise run docs:serve,mise run docs:deploy VERSIONmise run notebooks:executemise run build:wheelmise run lock:updateTask names follow
<domain>[:<action>[:<qualifier>...]]. Arguments select profiles or values. Commands containingcheckpreserve tracked files. Mutating tasks state their outputs inmise tasks.The default local gate stays explicit because it runs only static checks and unit tests; affected specialized suites remain separate. No
validatetask or removed Make compatibility alias is restored.Task and environment boundaries
uv run --locked --group <profile>makes leaf tasks independently runnable and synchronizes the requested locked profile.deps:syncremains the explicit command for preparing a profile without running another task.setupremains the shared local and CI entry point. CI uses--no-hooksto skip repository hook installation.Base and compatibility
mainat46bcd1edata-designer>=0.9,<0.10and ty 0.0.69 frommain; no dependency downgrades were introduced while regeneratinguv.lockmake help,make install-mise, andmake setupmake setupas the bootstrap path for machines without MiseMigration audits
E9,RUF100,UP015,UP017,UP035, andUP037; apply safe fixes; format and lint tracked Python files and rendered notebooks. The incidental library and tooling formatting edits are mechanical Ruff migrations with no intended behavior change.docspath discovers all rendered notebooks.lock:updateoperation.Security
GitHub Actions disables the unsigned fallback. When Mise must be installed, the pinned GPG-verified installer is required and setup fails if verification cannot complete. The installer fetches the pinned release key through HTTPS, verifies its fingerprint, downloads the signed installer from the exact pinned Mise release, and avoids dirmngr keyserver hangs. Local installation retains its documented unsigned fallback for slim development environments, but downloads the script completely to a temporary file before execution so curl retries cannot concatenate partial responses.
The PyPI task validates credentials before building, requires an explicit version, keeps credentials out of process arguments, and supports an upload-free
--dry-run.Validation
mise tasks validate: all 26 tasks passedmise run deps:sync all: every locked dependency group synchronized successfullymise run --dry-run test:all: resolved to the unit suite followed by the opt-in E2E suitemise run check ::: test: 1,213 tests passed; Ruff, ty, lock, formatting, SPDX, and benchmark shell checks passedmise run docs:build: strict documentation build passedmise run test -- tests/tools/test_mise_configuration.py -q: 22 focused workflow and tooling tests passedbuild:wheelanddocs:buildtasks built the wheel and strict docs from a separate checkout of historical tagv0.1.0bash -n tools/install-mise.sh: signed-installer script syntax passed