Skip to content

Commit 79fb3ce

Browse files
committed
docs: binaries
1 parent c09f116 commit 79fb3ce

1 file changed

Lines changed: 14 additions & 2 deletions

File tree

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,26 @@ RegreSQL is a language-agnostic SQL regression testing tool for PostgreSQL. It f
1010

1111
## Installing
1212

13-
### Homebrew (macOS)
13+
### Homebrew (macOS/Linux)
1414

1515
```bash
1616
brew tap boringsql/boringsql
1717
brew install regresql
1818
```
1919

20-
### Go
20+
### Prebuilt binaries
21+
22+
Every release publishes static binaries for macOS and Linux (arm64 and x86_64) on the [releases page](https://github.com/boringSQL/regresql/releases). Download the tarball for your platform, unpack it, and put the binary on your PATH:
23+
24+
```bash
25+
# Linux x86_64; swap the target for your platform
26+
curl -L https://github.com/boringSQL/regresql/releases/latest/download/regresql-x86_64-unknown-linux-gnu.tar.xz | tar -xJ
27+
sudo mv regresql /usr/local/bin/
28+
```
29+
30+
Targets: `aarch64-apple-darwin`, `x86_64-apple-darwin`, `aarch64-unknown-linux-gnu`, `x86_64-unknown-linux-gnu`. Checksums are in `checksums.txt` on each release.
31+
32+
### Go (from source)
2133

2234
```bash
2335
go install github.com/boringsql/regresql/v2@latest

0 commit comments

Comments
 (0)