mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-23 00:07:07 +03:00
49923376d1
bcachefs-tools has both libscrypt and libsodium as build dependencies, but libsodium already includes the same scrypt implementation as libscrypt, originally written by Colin Percival. Use the libsodium copy, dropping the extra libscrypt dependency. Explicitly adopt the default scrypt N, r and p values from libscrypt to avoid unintended changes in the default work parameters for bcachefs. Signed-off-by: Chris Webb <chris@arachsys.com>
37 lines
878 B
YAML
37 lines
878 B
YAML
os: linux
|
|
dist: bionic
|
|
language: c
|
|
arch:
|
|
- amd64
|
|
# - arm64
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- valgrind
|
|
- python3-docutils
|
|
- python3-pytest
|
|
- python3-pytest-xdist
|
|
- meson
|
|
- ninja-build
|
|
- pkg-config
|
|
- libaio-dev
|
|
- libblkid-dev
|
|
- libkeyutils-dev
|
|
- liblz4-dev
|
|
- libsodium-dev
|
|
- liburcu-dev
|
|
- libzstd-dev
|
|
- libudev-dev
|
|
- uuid-dev
|
|
- zlib1g-dev
|
|
|
|
before_install:
|
|
- wget https://github.com/libfuse/libfuse/archive/fuse-3.7.0.tar.gz -O /tmp/fuse.tar.gz
|
|
- tar -C /tmp -zxvf /tmp/fuse.tar.gz
|
|
- mkdir /tmp/libfuse-fuse-3.7.0/build
|
|
- pushd /tmp/libfuse-fuse-3.7.0/build && meson .. && ninja && sudo ninja install && popd
|
|
- sudo ldconfig
|
|
|
|
script: ./smoke_test
|