Skip to content

Commit dda396b

Browse files
committed
devenv: Drop goose from tools
Goose is not currently needed in the devenv image. Assisted-by: OpenCode (Claude Sonnet 4) Signed-off-by: Colin Walters <walters@verbum.org>
1 parent 7910dde commit dda396b

2 files changed

Lines changed: 0 additions & 18 deletions

File tree

devenv/Containerfile.c10s

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ dnf -y makecache
2626
EORUN
2727

2828
FROM base as tools
29-
# renovate: datasource=github-releases depName=block/goose
30-
ARG gooseversion=v1.11.1
3129
# renovate: datasource=github-releases depName=bootc-dev/bcvk
3230
ARG bcvkversion=v0.9.0
3331
# renovate: datasource=github-releases depName=ossf/scorecard
@@ -38,14 +36,6 @@ arch=$(arch)
3836

3937
rm -vrf /usr/local/bin/*
4038

41-
# goose is a single static binary
42-
target=goose-${arch}-unknown-linux-gnu.tar.bz2
43-
/bin/time -f '%E %C' curl -fLO https://github.com/block/goose/releases/download/$gooseversion/$target
44-
tar xvjf $target
45-
mv goose /usr/local/bin/goose
46-
47-
## Other tools
48-
4939
# bcvk
5040
if test "${arch}" = x86_64; then
5141
td=$(mktemp -d)

devenv/Containerfile.debian

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ apt -y update
2626
EORUN
2727

2828
FROM base as tools
29-
# renovate: datasource=github-releases depName=block/goose
30-
ARG gooseversion=v1.11.1
3129
# renovate: datasource=github-releases depName=bootc-dev/bcvk
3230
ARG bcvkversion=v0.9.0
3331
# renovate: datasource=github-releases depName=ossf/scorecard
@@ -38,12 +36,6 @@ arch=$(arch)
3836

3937
rm -vrf /usr/local/bin/*
4038

41-
# goose for local AI
42-
target=goose-${arch}-unknown-linux-gnu.tar.bz2
43-
/bin/time -f '%E %C' curl -fLO https://github.com/block/goose/releases/download/$gooseversion/$target
44-
tar xvjf $target
45-
mv goose /usr/local/bin/goose
46-
4739
# bcvk
4840
if test "${arch}" = x86_64; then
4941
td=$(mktemp -d)

0 commit comments

Comments
 (0)