Skip to content

Commit

Permalink
make and install vmdk-fuse in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverkurth committed Jul 9, 2024
1 parent 5c3befb commit 41195a1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4

- name: install build deps
run: sudo apt-get -y install zlib1g-dev
run: sudo apt-get -y install zlib1g-dev libfuse3-dev fuse2fs

- name: build
working-directory: ${{ github.workspace }}
Expand All @@ -19,6 +19,14 @@ jobs:
working-directory: ${{ github.workspace }}
run: sudo make install

- name: build-fuse
working-directory: ${{ github.workspace }}
run: make fuse

- name: install-fuse
working-directory: ${{ github.workspace }}
run: sudo make install-fuse

- name: set up python 3
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 41195a1

Please sign in to comment.