Skip to content

Commit

Permalink
Use fuse3
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper committed Aug 27, 2023
1 parent f8a657a commit 1346b8a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
sudo apt-get install -y fuse3 libfuse3-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
sudo apt-get install -y fuse3 libfuse3-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
sudo apt-get install -y fuse3 libfuse3-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
sudo apt-get install -y fuse3 libfuse3-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Install fuse
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
sudo apt-get install -y fuse3 libfuse3-dev
- name: Install linker
if: matrix.build == 'linux' || matrix.build == 'aarch64-linux' || matrix.build == 'mips-linux' || matrix.build == 'mipsel-linux' ||matrix.build == 'mips64el-linux' || matrix.build == 'mips64-linux' || matrix.build == 'riscv64'
run: sudo apt-get update && sudo apt-get install ${{ matrix.linker }} -y
Expand Down

0 comments on commit 1346b8a

Please sign in to comment.