This repo provides build rules to compile Redis Stack binaries from source for the Please build system.
Additionally, pre-built Redis Stack Binary artifacts are available for download from the GitHub release assets.
These are intended for use in sandboxed or hermetic build systems (like Please), where installing via apt
or building from source on the fly isn't ideal. This setup is perfect for SAT frameworks, CI pipelines, or constrained container environments.
Redis Stack Version | Supported OS | Supported Architecture | Download Link |
---|---|---|---|
7.4.2 | Linux | x86_64 | Download |
Each .tar.gz
archive contains the following Redis Stack binaries:
redis-server
redis-cli
redis-sentinel
redis-benchmark
redis-check-aof
redis-check-rdb
These are dynamically linked against glibc
and OpenSSL 3. They are compatible with most modern Linux distributions such as:
- Ubuntu 22.04+
- Debian 11+
- Fedora 36+
- Arch Linux
These binaries will not run on Alpine Linux out of the box due to its use of musl
instead of glibc
.
A statically linked version compatible with Alpine is planned for a future release.
-
Add the plugin to your project
In
plugins/BUILD
:plugin_repo( name = "redis", owner = "jackmarsh", revision = "v0.0.1", )
-
Update your
.plzconfig
Add the following section:
[Plugin "redis"] Target = //plugins:redis
-
Use the Redis Stack build rules in your project
After setting up the plugin, you can use the
redis_stack
build rule to include Redis Stack binaries in your project. Example:subinclude("///redis//build_defs:redis") redis_stack( name = "redis_stack", version = "7.4.2", visibility = ["PUBLIC"], )
This will build the specified version of Redis Stack binaries from source.
If you prefer not to build Redis Stack from source, you can directly download pre-built binaries from the GitHub release assets.
Example:
remote_file(
name = "redis",
url = "https://github.com/jackmarsh/redis/releases/download/v0.0.1/redis-7.4.2-linux_x86_64.tar.gz",
hashes = ["<hash of the file>"], # Optional
)
Download and extract the tarball:
# Download the binary
curl -L -o redis-stack.tar.gz https://github.com/jackmarsh/redis/releases/download/v0.0.2/redis-7.4.2-linux_x86_64.tar.gz
# Extract it
tar -xzf redis-stack.tar.gz -C /path/to/destination
# Run Redis Server
/path/to/destination/redis-server
You can find all available versions and corresponding binaries on the releases page.
If you need a pre-built binary for a specific Redis Stack version, operating system, or architecture that is not currently included in the release assets, feel free to reach out or open an issue.
We're happy to consider adding additional prebuilt binaries to future releases!