Skip to content

Commit

Permalink
ci(build): more dependency targets
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Nov 10, 2024
1 parent 59eae0d commit 9ddeb25
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions build-dependencies.just
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,29 @@ install-mount-x86_64-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config

# Install dependencies for the mount feature on aarch64-unknown-linux-gnu
install-mount-aarch64-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config

# Install dependencies for the mount feature on i686-unknown-linux-gnu
install-mount-i686-unknown-linux-gnu:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config

# Install dependencies for the mount feature on x86_64-unknown-linux-musl
install-mount-x86_64-unknown-linux-musl:
sudo apt-get update
sudo apt-get install -y fuse3 libfuse3-dev pkg-config

# Install dependencies for the mount feature on x86_64-apple-darwin
install-mount-x86_64-apple-darwin:
brew install macfuse

# Install dependencies for the mount feature on aarch64-apple-darwin
install-mount-aarch64-apple-darwin:
brew install macfuse

# Install dependencies for the mount feature on x86_64-pc-windows-msvc
install-mount-x86_64-pc-windows-msvc:
winget install winfsp

0 comments on commit 9ddeb25

Please sign in to comment.