diff options
| -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  | 
