Files
dbtool/.woodpecker/build.yaml
2025-11-21 12:35:01 +01:00

68 lines
1.9 KiB
YAML

matrix:
platform:
- linux/amd64
labels:
platform: ${platform}
steps:
build-berkeley:
when:
event: [push]
image: alpine:latest
commands:
- apk update
- apk add --no-cache bash build-base gdb perl pcre2 pcre2-dev db db-dev pkgconfig meson ninja
- meson setup --reconfigure build
- ninja -C build
test-berkeley:
when:
event: [push]
image: alpine:latest
commands:
- apk update
- apk add --no-cache bash build-base pcre2 pcre2-dev db db-dev
- rm -f test.db
- build/dbtool -d test.db -i -k "test" -v "blah"
- build/dbtool -d test.db -i -k "foo" -v "bar"
- build/dbtool -d test.db -D | grep blah
- build/dbtool -d test.db -D | wc -l | grep 2
- build/dbtool -d test.db -s -k test
- build/dbtool -d test.db -S -k 't$'
# deletion doesn't work with berkeley currently?
#- build/dbtool -d test.db -r -k foo
#- build/dbtool -d test.db -D | wc -l | grep 1
build-gdbm:
when:
event: [push]
image: alpine:latest
commands:
- apk update
- apk add --no-cache bash build-base perl pcre2 pcre2-dev gdbm gdbm-dev pkgconfig meson ninja
- meson setup --reconfigure build
- ninja -C build
- rm -f test.db
- build/dbtool -d test.db -i -k "test" -v "blah blah blah"
- build/dbtool -d test.db -D | grep blah
test-gdbm:
when:
event: [push]
image: alpine:latest
commands:
- apk update
- apk add --no-cache bash build-base pcre2 pcre2-dev gdbm gdbm-dev
- rm -f test.db
- build/dbtool -d test.db -i -k "test" -v "blah"
- build/dbtool -d test.db -i -k "foo" -v "bar"
- build/dbtool -d test.db -D | grep blah
- build/dbtool -d test.db -D | wc -l | grep 2
- build/dbtool -d test.db -s -k test
- build/dbtool -d test.db -S -k 't$'
- build/dbtool -d test.db -r -k foo
- build/dbtool -d test.db -D | wc -l | grep 1