2024-03-21 17:26:13 -04:00
|
|
|
# SPDX-FileCopyrightText: 2024 Redict Contributors
|
|
|
|
# SPDX-License-Identifier: LGPL-3.0-only
|
|
|
|
|
|
|
|
image: alpine/latest
|
|
|
|
# procps needed for `ps j $pid` in tests
|
|
|
|
packages:
|
|
|
|
- tcl
|
|
|
|
- tcl-tls
|
|
|
|
- openssl-dev
|
|
|
|
- linux-headers
|
|
|
|
- procps
|
2024-03-25 13:06:29 -04:00
|
|
|
- moreutils
|
|
|
|
- reuse
|
2024-03-22 13:09:45 -04:00
|
|
|
sources:
|
|
|
|
- https://codeberg.org/redict/redict.git
|
2024-03-21 17:26:13 -04:00
|
|
|
tasks:
|
2024-03-25 12:47:34 -04:00
|
|
|
- lint: |
|
|
|
|
cd redict
|
|
|
|
./utils/lint.sh
|
2024-03-21 17:26:13 -04:00
|
|
|
- make: |
|
|
|
|
cd redict
|
|
|
|
make -C src V=1 USE_JEMALLOC=no MALLOC=libc BUILD_TLS=yes
|
|
|
|
- gen-test-certs: |
|
|
|
|
cd redict
|
|
|
|
./utils/gen-test-certs.sh
|
|
|
|
- runtest: |
|
|
|
|
cd redict
|
|
|
|
./runtest --tls
|
2024-03-24 10:58:39 -04:00
|
|
|
- runtest-cluster: |
|
|
|
|
cd redict
|
|
|
|
./runtest-cluster
|
2024-03-25 12:41:32 -04:00
|
|
|
- runtest-sentinel: |
|
|
|
|
cd redict
|
|
|
|
./runtest-sentinel
|
2024-03-25 07:41:50 -04:00
|
|
|
- runtest-moduleapi: |
|
|
|
|
cd redict
|
2024-03-25 12:41:32 -04:00
|
|
|
./runtest-moduleapi
|