49 lines
1.2 KiB
Markdown
49 lines
1.2 KiB
Markdown
# GreptimeDB Alpine Package
|
|
|
|
This package builds `greptime` from the upstream GreptimeDB source release and packages OpenRC service subpackages plus default `/etc/greptimedb` configuration.
|
|
|
|
The APKBUILD builds the release directly:
|
|
|
|
```sh
|
|
cargo build --profile nightly --locked --bin greptime --features servers/dashboard
|
|
```
|
|
|
|
## Package Commands
|
|
|
|
Refresh the source checksum after changing `pkgver`:
|
|
|
|
```sh
|
|
ALPINE_PACKAGE=greptimedb mise run apk:checksum
|
|
```
|
|
|
|
Build only this package:
|
|
|
|
```sh
|
|
ALPINE_PACKAGE=greptimedb mise run apk:build
|
|
```
|
|
|
|
Install-test an existing local build without recompiling:
|
|
|
|
```sh
|
|
ALPINE_PACKAGE=greptimedb SKIP_BUILD=1 mise run apk:test-install
|
|
```
|
|
|
|
Install-test from a published Gitea Alpine repository:
|
|
|
|
```sh
|
|
ALPINE_PACKAGE=greptimedb \
|
|
SKIP_BUILD=1 \
|
|
ALPINE_REPOSITORY_URL=https://code.factoring.digital/api/packages/public/alpine/v3.23/alpine-packages \
|
|
ALPINE_REPOSITORY_KEY_URL=https://code.factoring.digital/api/packages/public/alpine/key \
|
|
mise run apk:test-install
|
|
```
|
|
|
|
Use the `edge` branch on Alpine edge nodes:
|
|
|
|
```sh
|
|
ALPINE_REPOSITORY_URL=https://code.factoring.digital/api/packages/public/alpine/edge/alpine-packages
|
|
```
|
|
|
|
The full build can take close to an hour. Do not run it as part of lightweight
|
|
metadata or script checks.
|