Skip to content

Commit

Permalink
Installing fuse3 manually
Browse files Browse the repository at this point in the history
  • Loading branch information
silverdaz committed Dec 10, 2024
1 parent aa38abd commit 4cae688
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,21 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y libsodium-dev libfuse3-dev libssl-dev pkg-config python3 python3-pip autoconf automake make gcc
- name: Update fuse3
run: sudo sed -i '/user_allow_other/s/^#.*user_allow_other$/user_allow_other/' /etc/fuse.conf
run: sudo apt-get install -y libsodium-dev libssl-dev pkg-config python3 python3-pip autoconf automake make gcc meson ninja-build wget
- name: Install libfuse v3.16.2
run: |
wget https://github.com/libfuse/libfuse/releases/download/fuse-3.16.2/fuse-3.16.2.tar.gz
tar xzf fuse-3.16.2.tar.gz; cd fuse-3.16.2
mkdir build; cd build
meson setup ..
meson configure -D disable-mtab=true
meson configure -D prefix=/usr/local
meson configure -D tests=false
meson configure -D examples=false
ninja
sudo ninja install
ldconfig -v
sudo sed -i '/user_allow_other/s/^#.*user_allow_other$/user_allow_other/' /usr/local/etc/fuse.conf
- name: Install Crypt4GH
run: sudo python3 -m pip install crypt4gh
- name: Compile
Expand Down

0 comments on commit 4cae688

Please sign in to comment.