aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2021-10-15 21:59:12 +0200
committerJakob Unterwurzacher2021-10-15 22:01:52 +0200
commitb0bddc5ed07d7c2f8f1e64a1cc6ea5d0543dd7fa (patch)
tree64efa0088601546d7f4047e9b1ed0ff70e84b8b5
parent8ec872e330985a2de87c3b15d6c49ab9e3281573 (diff)
github actions: fix allow_other failureallow_other
Jobs currently fail like this: /usr/bin/fusermount: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf fs.Mount failed: fusermount exited with code 256 --- FAIL: TestForceOwner (0.05s) main_test.go:438: mount failed: exit status 19 FAIL FAIL github.com/rfjakob/gocryptfs/v2/tests/defaults 1.584s
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 57c9752..c91ffa2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -36,6 +36,9 @@ jobs:
# CI platform specific setup steps happen here
- 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
+
# Build & upload static binary
- run: ./build-without-openssl.bash
- uses: actions/upload-artifact@v2