Releases¶
Preview-grade. The
v0.xseries is an explicit preview: the REST surface, gRPC contract, and on-disk format may break across releases. Stable promises arrive atv1.0.0. SeeROADMAP.mdfor the active plan.
Releases are cut by tag push today. Tag the commit you want to release with
vX.Y.Z and push the tag; that triggers
.github/workflows/release.yml, which
builds the engine via Bazel, publishes the runtime Docker image to
GHCR,
and uses goreleaser (config:
.goreleaser.yml) to upload the gateway archives + SHA-256
checksums to the GitHub release page.
# Cut the very first release (preview).
git tag -a v0.0.1 -m 'release: v0.0.1 (preview)'
git push origin v0.0.1
task release:tag VERSION=v0.0.1 is a foot-gun guard around the above: it
prints the exact git tag + git push lines and only executes them when
CONFIRM=yes is set (task release:tag VERSION=v0.0.1 CONFIRM=yes).
The semantic-release config at .releaserc.yml is parked
for the eventual switch to auto-release on push to main. It is not currently
driving any GitHub Actions job; the file exists so the conventional-commits
format documented in .cursor/rules/auto-commit.mdc has a target for the
future flip.
Install via release archive¶
# Pick the right tarball for your OS/arch from the releases page:
# https://github.com/vantaboard/bigquery-emulator/releases
curl -fL https://github.com/vantaboard/bigquery-emulator/releases/download/v0.0.1/bigquery-emulator_0.0.1_linux_amd64.tar.gz \
| tar xz
./bigquery-emulator-gateway --help
Each archive bundles bigquery-emulator-gateway (the Go REST gateway) plus
bin/emulator_main and bin/libduckdb.so (the C++ engine). The gateway's
--engine_binary flag defaults to discovering the engine beside the gateway
binary, so ./bigquery-emulator-gateway works out of the tarball without extra
flags.
Engine binary is linux/amd64 in release archives today. Native
linux/arm64engine builds are in CI (non-blocking); seedocs/dev/googlesql-prebuilt/arm64-feasibility.md. macOS engine builds remain out of scope. The macOS + linux/arm64 gateway archives still bundle the linux/amd64 engine binary until arm64 engine releases ship, so you cannot run the bundled engine on a non-linux/amd64 host today. The recommended path on macOS or linux/arm64 is the published Docker image — see Docker → Install via Docker.