From e5642e27e5531309366cf21beb434aa40d5aba49 Mon Sep 17 00:00:00 2001 From: sysrow Date: Sat, 30 May 2026 21:15:18 +0200 Subject: [PATCH] ci: add manual self-hosted build workflow --- .github/workflows/selfhosted-build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/selfhosted-build.yml diff --git a/.github/workflows/selfhosted-build.yml b/.github/workflows/selfhosted-build.yml new file mode 100644 index 0000000..0496ec0 --- /dev/null +++ b/.github/workflows/selfhosted-build.yml @@ -0,0 +1,18 @@ +name: Self-hosted build + +# Manual trigger only. Builds the Rust crate on the self-hosted runner (tristram). +# Note: the Rust toolchain path under the hardened sandbox is not yet verified; +# the first run will confirm or require a ReadWritePaths addition. +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + build: + runs-on: [self-hosted, tristram] + steps: + - uses: actions/checkout@v4 + - uses: dtolnay/rust-toolchain@stable + - run: cargo build --locked