Skip to content
Open
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
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,29 @@ Canary:
$env:BT_CHANNEL='canary'; powershell -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/braintrustdata/bt/main/install.ps1 | iex"
```

### [mise](https://mise.jdx.dev)

```toml
[tools."github:braintrustdata/bt"]
version = "0.15.1"

# Optional, to specify the expected sha
[tools."github:braintrustdata/bt".platforms]
macos-arm64.checksum = "sha256:dca05a9d4b694c24e91e4d771d9d954fd6372079c8f72f2709f6e68478f0eb28"
macos-x64.checksum = "sha256:e81155f6d894ef44c653ced9a5b5fc9ba1a2ccc7765c41ada1e8baa345e09d2f"
linux-arm64.checksum = "sha256:1ff86377e1d6fcaccf9a6f6496a8e94eff7298f44cb98906c97518c9fa2bb73e"
linux-x64.checksum = "sha256:2fab9f8ece4ac2c66386206fa5f9d905e076da59d95e35423d641c24525740b1"
linux-x64-musl.checksum = "sha256:a33dea199b74c3282ef1aab5fab916cf9e22b5e11e396e6ef012a104c90fea1a"
windows-arm64.checksum = "sha256:2cc328337965997a23c95be20dd88318602aac76f5a35311675f416d46095771"
windows-x64.checksum = "sha256:70f7d7cfebfd978c3e475e13ac035e8931797ead33d1171073520470785f1244"
```

The version can be `"stable"` for the latest stable version, `"0.15.1"` for a specific version, `"canary"` to get the latest canary version, or `"canary-7129692509ab"` (12 character short SHA1) to get a specific canary version.

Don't choose `"stable"` or `"canary"` while pinning SHA256 since they change every release.

Do note the SHA1 is the commit hash while the (optional) SHA256 of `mise.toml` are hashed from the archive with the binaries.

### PR/branch builds (no release)

Non-`main` branch builds are available as GitHub Actions run artifacts (download from the workflow run page or with `gh run download`). They are not published as GitHub Releases.
Expand Down
Loading