Skip to content

Commit 9c51103

Browse files
authored
Merge pull request #618 from tavip/lkl-enable-fuse-test
Enable fuse test in CI
2 parents d3d0f61 + 544fd53 commit 9c51103

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
if: runner.os == 'Linux'
109109
run: |
110110
sudo apt update -y
111-
sudo apt install -y ccache libjsmn-dev
111+
sudo apt install -y ccache libjsmn-dev libfuse3-dev
112112
- name: Install clang toolchain
113113
if: runner.os == 'Linux'
114114
run: |

tools/lkl/tests/lklfuse.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ if [ -z "$fstype" ]; then
9898
fstype="ext4"
9999
fi
100100

101-
if ! [ -x $script_dir/../lklfuse ]; then
101+
if [ "$LKL_HOST_CONFIG_FUSE" != "y" ]; then
102102
lkl_test_plan 0 "lklfuse.sh $fstype"
103103
echo "lklfuse not available"
104104
exit 0

0 commit comments

Comments
 (0)