Skip to content

Commit

Permalink
Add docs and more tests
Browse files Browse the repository at this point in the history
Revert formatting

Revert vendir version downgrade
  • Loading branch information
burritobill committed Sep 4, 2024
1 parent ee0e971 commit 03fe315
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 3 deletions.
14 changes: 14 additions & 0 deletions docs/custom-registries.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,20 @@ https://storage.googleapis.com/dart-archive/channels/stable/release/2.19.4/sdk/d
https://storage.googleapis.com/dart-archive/channels/stable/release/2.19.4/sdk/dartsdk-linux-arm64-release.zip.sha256sum
```

## `devbox`

Devbox releases are downloaded from:

- `https://github.com/jetify-com/devbox/releases`

Samples:

```txt
https://github.com/jetify-com/devbox/releases/download/0.12.0/devbox_0.12.0_linux_amd64.tar.gz
https://github.com/jetify-com/devbox/releases/download/0.12.0/devbox_0.12.0_linux_arm64.tar.gz
https://github.com/jetify-com/devbox/releases/download/0.12.0/checksums.txt
```

## `docker`

Docker releases are downloaded from:
Expand Down
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
"sops",
"swift",
"uv",
"vendir"
"vendir",
"devbox"
],
"separateMinorPatch": false
},
Expand Down Expand Up @@ -117,7 +118,6 @@
"sbt",
"sops",
"swift",
"uv",
"vendir"
],
"matchUpdateTypes": ["minor", "patch"],
Expand Down
1 change: 1 addition & 0 deletions src/cli/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const NoPrepareTools = [
'composer',
'copier',
'corepack',
'devbox',
'flux',
'gleam',
'gradle',
Expand Down
5 changes: 4 additions & 1 deletion test/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ RUN prepare-tool all
RUN set -ex; [ -d /usr/local/erlang ] && echo "works" || exit 1;

#--------------------------------------
# test: bazelisk, bun, vendir, helmfile, kustomize, skopeo
# test: bazelisk, bun, devbox, vendir, helmfile, kustomize, skopeo
#--------------------------------------
FROM base AS teste

Expand All @@ -215,6 +215,9 @@ RUN install-tool bazelisk v1.20.0
# renovate: datasource=npm
RUN install-tool bun 1.1.26

# renovate: datasource=github-releases packageName=jetify-com/devbox
RUN install-tool devbox 0.12.0

# renovate: datasource=github-releases packageName=gleam-lang/gleam
RUN install-tool gleam 1.4.1

Expand Down
9 changes: 9 additions & 0 deletions test/latest/Dockerfile.arm64
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ FROM base AS test-bun
# renovate: datasource=npm
RUN install-tool bun 1.1.26

#--------------------------------------
# Image: devbox
#--------------------------------------
FROM base AS test-devbox

# renovate: datasource=github-releases packageName=jetify-com/devbox
RUN install-tool devbox 0.12.0

#--------------------------------------
# Image: gleam
#--------------------------------------
Expand Down Expand Up @@ -133,6 +141,7 @@ FROM base

COPY --from=test-bazelisk /.dummy /.dummy
COPY --from=test-bun /.dummy /.dummy
COPY --from=test-devbox /.dummy /.dummy
COPY --from=test-docker /.dummy /.dummy
COPY --from=test-git /.dummy /.dummy
COPY --from=test-git-lfs /.dummy /.dummy
Expand Down

0 comments on commit 03fe315

Please sign in to comment.