Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Wh1isper committed Aug 27, 2023
1 parent 03dd43e commit f1952c7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Install fuse
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -20,6 +25,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Install fuse
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -32,6 +42,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Install fuse
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -45,6 +60,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Install fuse
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-dev
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

# Install fuse
- name: Install fuse
run: |
sudo apt-get update
sudo apt-get install -y fuse libfuse-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 f1952c7

Please sign in to comment.