Merged
Conversation
Use `mise` to install roger-roger and entire-agent-roger-roger, this simplify a lot the setup and allow tests to run without changing the PATH manually. Entire-Checkpoint: b1019a97fb96
Contributor
There was a problem hiding this comment.
Pull request overview
This PR shifts installation of the roger-roger E2E agent binaries from ad-hoc go install steps (scripts + CI workflows) to being managed centrally via mise tooling, and updates the canary E2E task to exercise both built-in and external deterministic agents.
Changes:
- Add
roger-rogerandentire-agent-roger-rogerasmise-managed Go tools. - Remove inline
go installof roger-roger binaries from E2E task scripts and GitHub workflows. - Expand the E2E canary task to run once with
vogonand once withroger-roger, producing separate artifacts/reports.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
mise.toml |
Adds roger-roger Go tool installs under [tools] so mise provisions the binaries. |
mise-tasks/test/e2e/roger-roger |
Removes manual GitHub install of roger-roger binaries; now assumes mise provides them. |
mise-tasks/test/e2e/canary |
Runs canary E2Es twice (vogon + roger-roger) with separate gotestsum event files and reports. |
.github/workflows/e2e.yml |
Stops installing roger-roger via go install, relying on mise instead. |
.github/workflows/e2e-isolated.yml |
Same as above for isolated E2E workflow. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Entire-Checkpoint: a2ab33567fa0
pjbgf
approved these changes
Mar 16, 2026
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.
Use
miseto install roger-roger and entire-agent-roger-roger, this simplify a lot the setup and allow tests to run without changing the PATH manually.Following up from #700