diff options
author | Jakob Unterwurzacher | 2025-03-11 23:12:22 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-03-11 23:25:04 +0100 |
commit | 1c335c73545fbddd83fc905925e808f01cb851a0 (patch) | |
tree | a9dbdb5e7c923bc1e016025afaad834226851e16 | |
parent | 6cf295e0e13ec21b207bdf1309907e7c43b33726 (diff) |
github ci: bump nmount_max and print resulting fuse.conf
We have been getting
/usr/bin/fusermount3: too many FUSE filesystems mounted; mount_max=N can be set in /etc/fuse.conf
fs.Mount failed: fusermount exited with code 256
every now and then. I wonder why that is.
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aecbd84..b78112c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,8 @@ jobs: - run: sudo apt-get install -qq fuse3 libssl-dev # Fix "/usr/bin/fusermount: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf" - - run: echo user_allow_other | sudo tee -a /etc/fuse.conf + # and "/usr/bin/fusermount3: too many FUSE filesystems mounted" + - run: echo -e 'user_allow_other\nmount_max = 10000' | sudo tee -a /etc/fuse.conf && cat /etc/fuse.conf # Build & upload static binary - run: ./build-without-openssl.bash |