Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions devenv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ organization, especially bootc.
- [bcvk](https://github.com/bootc-dev/bcvk/) to launch bootc VMs
- [tmt](https://tmt.readthedocs.io/) since bootc testing requires it
- [Kani](https://model-checking.github.io/kani/usage.html)
- [Goose](https://github.com/block/goose) AI coding agent

## Base images

Expand Down
8 changes: 8 additions & 0 deletions devenv/fetch-tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ class Tool:
binary_path_fmt="cargo-nextest",
binary_name="cargo-nextest",
),
"goose": Tool(
repo="block/goose",
arch_map={"x86_64": "x86_64", "aarch64": "aarch64"},
tag_fmt="{version}", # version already includes 'v' prefix
tarball_fmt="goose-{arch}-unknown-linux-gnu.tar.gz",
Comment thread
gursewak1997 marked this conversation as resolved.
binary_path_fmt="goose",
binary_name="goose",
),
}


Expand Down
2 changes: 2 additions & 0 deletions devenv/tool-versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ nushell@0.111.0
jj@0.40.0
# renovate: datasource=github-releases depName=nextest-rs/nextest
cargo-nextest@0.9.132
# renovate: datasource=github-releases depName=block/goose
goose@v1.30.0
Loading