diff --git a/.github/workflows/fuse-dlm-integration.yml b/.github/workflows/fuse-dlm-integration.yml index 6ce3f0724..47a27cc19 100644 --- a/.github/workflows/fuse-dlm-integration.yml +++ b/.github/workflows/fuse-dlm-integration.yml @@ -40,10 +40,11 @@ jobs: with: go-version-file: 'go.mod' - - name: Install FUSE dependencies + - name: Configure FUSE run: | - sudo apt-get update - sudo apt-get install -y libfuse3-dev + # Nothing to install: fuse3 ships fusermount3 and is pre-installed, + # and go-fuse is pure Go, so the libfuse headers were never linked + # against. echo 'user_allow_other' | sudo tee -a /etc/fuse.conf sudo chmod 644 /etc/fuse.conf diff --git a/.github/workflows/fuse-failover.yml b/.github/workflows/fuse-failover.yml index de79f6c68..c11ca3e2f 100644 --- a/.github/workflows/fuse-failover.yml +++ b/.github/workflows/fuse-failover.yml @@ -47,10 +47,11 @@ jobs: with: go-version-file: 'go.mod' - - name: Install FUSE dependencies + - name: Configure FUSE run: | - sudo apt-get update - sudo apt-get install -y libfuse3-dev + # Nothing to install: fuse3 ships fusermount3 and is pre-installed, + # and go-fuse is pure Go, so the libfuse headers were never linked + # against. echo 'user_allow_other' | sudo tee -a /etc/fuse.conf sudo chmod 644 /etc/fuse.conf diff --git a/.github/workflows/fuse-integration.yml b/.github/workflows/fuse-integration.yml index 72bb23ad5..3b23cb222 100644 --- a/.github/workflows/fuse-integration.yml +++ b/.github/workflows/fuse-integration.yml @@ -38,12 +38,10 @@ jobs: with: go-version-file: 'go.mod' - - name: Install FUSE and dependencies + - name: Configure FUSE run: | - sudo apt-get update - # fuse3 is pre-installed on ubuntu-22.04 runners and conflicts - # with the legacy fuse package, so only install the dev headers. - sudo apt-get install -y libfuse3-dev + # Nothing to install: fuse3 ships fusermount3 and is pre-installed, and + # go-fuse is pure Go, so the libfuse headers were never linked against. # Allow non-root FUSE mounts with allow_other echo 'user_allow_other' | sudo tee -a /etc/fuse.conf sudo chmod 644 /etc/fuse.conf diff --git a/.github/workflows/fuse-p2p-integration.yml b/.github/workflows/fuse-p2p-integration.yml index 8cdc18147..28771e11a 100644 --- a/.github/workflows/fuse-p2p-integration.yml +++ b/.github/workflows/fuse-p2p-integration.yml @@ -46,10 +46,11 @@ jobs: with: go-version-file: 'go.mod' - - name: Install FUSE dependencies + - name: Configure FUSE run: | - sudo apt-get update - sudo apt-get install -y libfuse3-dev + # Nothing to install: fuse3 ships fusermount3 and is pre-installed, + # and go-fuse is pure Go, so the libfuse headers were never linked + # against. echo 'user_allow_other' | sudo tee -a /etc/fuse.conf sudo chmod 644 /etc/fuse.conf