Skip to content

Commit

Permalink
rename workflows, add fusermount3 v2
Browse files Browse the repository at this point in the history
  • Loading branch information
swazau committed Jun 25, 2024
1 parent 86569d9 commit acb2182
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 2 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build-arm64-fusermount3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build fusermount3 for ARM64

on:
push:
branches: [ main ]

jobs:
build:
runs-on: buildjet-4vcpu-ubuntu-2204-arm

steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential meson ninja-build pkg-config libfuse3-dev udev
- name: Clone libfuse
run: git clone https://github.com/libfuse/libfuse.git

- name: Build fusermount3
run: |
cd libfuse
mkdir build
cd build
meson ..
ninja
sudo ninja install
- name: Copy fusermount3 binary
run: sudo cp /usr/local/bin/fusermount3 ./fusermount3

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: fusermount3-arm64
path: ./fusermount3
4 changes: 2 additions & 2 deletions .github/workflows/build-arm64-gocryptfs-PR.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build gocryptfs for ARM64 and create PR

on:
push:
branches: [ main ]
# push: # re-add if you want gocryptfs built each push
# branches: [ main ]
workflow_dispatch:

jobs:
Expand Down

0 comments on commit acb2182

Please sign in to comment.