aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitea
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-25 04:05:54 +0900
committerOphestra <cat@gensokyo.uk>2025-12-25 05:13:02 +0900
commit7bfbd5981025282007f09225e22e895523d7a7bf (patch)
tree14e4ea7475ab63c8fa22845d287a307fb029c110 /.gitea
parentea815a59e85a5acad8e22e98a16cdc6de1323824 (diff)
cmd/sharefs: implement shared filesystem
This is for passing files between applications, similar to android /sdcard. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to '.gitea')
-rw-r--r--.gitea/workflows/test.yml18
1 files changed, 18 insertions, 0 deletions
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: