Skip to content

Commit 6506aa3

Browse files
committed
ci(test): add fuse2fs package to FUSE dependency installation
On Ubuntu, `fuse2fs` is a separate package from `e2fsprogs`. The previous commit only installed `e2fsprogs`, which does not include the `fuse2fs` binary needed by the cross-device test. https://claude.ai/code/session_01LfpnUZrgq93MVZgA3KVqE6
1 parent a33c417 commit 6506aa3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
3232
- name: Install FUSE dependencies
3333
if: runner.os == 'Linux'
34-
run: sudo apt-get install -y e2fsprogs fuse3
34+
run: sudo apt-get install -y e2fsprogs fuse2fs fuse3
3535

3636
- name: Test (dev)
3737
shell: bash

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Install FUSE dependencies
4646
if: runner.os == 'Linux'
47-
run: sudo apt-get install -y e2fsprogs fuse3
47+
run: sudo apt-get install -y e2fsprogs fuse2fs fuse3
4848

4949
- name: Test (dev)
5050
shell: bash

0 commit comments

Comments
 (0)