mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-23 00:07:07 +03:00
57ada395b2
This tool currently has most of the fundmental features implemented. It can mount a filesystem specified by uuid, it can ask password for an encrypted filesystem. There may be some work that needs to be done to make it behave more like a "mount.*" tool. Related: #1 Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
37 lines
875 B
YAML
37 lines
875 B
YAML
os: linux
|
|
dist: bionic
|
|
language: c
|
|
arch:
|
|
- amd64
|
|
# - arm64
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- valgrind
|
|
- python3-pytest
|
|
- python3-pytest-xdist
|
|
- meson
|
|
- ninja-build
|
|
- pkg-config
|
|
- libaio-dev
|
|
- libblkid-dev
|
|
- libkeyutils-dev
|
|
- liblz4-dev
|
|
- libscrypt-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
|