From 7bfbd5981025282007f09225e22e895523d7a7bf Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 25 Dec 2025 04:05:54 +0900 Subject: cmd/sharefs: implement shared filesystem This is for passing files between applications, similar to android /sdcard. Signed-off-by: Ophestra --- .gitea/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to '.gitea/workflows') diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 71cb09e8..3870bbb4 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -72,6 +72,23 @@ jobs: path: result/* retention-days: 1 + sharefs: + name: ShareFS + runs-on: nix + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run NixOS test + run: nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.sharefs + + - name: Upload test output + uses: actions/upload-artifact@v3 + with: + name: "sharefs-vm-output" + path: result/* + retention-days: 1 + hpkg: name: Hpkg runs-on: nix @@ -96,6 +113,7 @@ jobs: - race - sandbox - sandbox-race + - sharefs - hpkg runs-on: nix steps: -- cgit v1.3.1