ci: adds missing fuse dep

Signed-off-by: Ramon Roche <mrpollo@gmail.com>
This commit is contained in:
Ramon Roche
2025-06-23 17:11:16 -07:00
parent 89cd709952
commit cc384d44c7
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -24,7 +24,10 @@ jobs:
run: git config --system --add safe.directory '*'
- name: Install FUSE support
run: sudo apt-get update && sudo apt-get install -y libfuse2
run: |
sudo apt-get update
sudo apt-get install -y libfuse2 fuse
sudo modprobe fuse
- name: Install appimagetool
run: |
+1
View File
@@ -126,6 +126,7 @@ if [[ $INSTALL_NUTTX == "true" ]]; then
genromfs \
gettext \
gperf \
fuse \
kconfig-frontends \
libelf-dev \
libexpat-dev \