GitHub Actions workflows

May 3, 2026 · View on GitHub

Active

WorkflowRunnerTriggerPurpose
ci.ymlubuntu-latestpush, PRLint, unit tests, sanity tests, build
sanity.ymlubuntu-latestpush, PRCSI specification compliance tests
integration.ymlubuntu-24.04 (QEMU + k3s VM via .github/actions/qemu-vm)push to main, PR, dispatchFull E2E suite: NFS, NVMe-oF, iSCSI, SMB, Shared
qemu-e2e.ymlubuntu-24.04 (QEMU + k3s VM)dispatchNFS-only QEMU smoke test (predates the per-protocol split in integration.yml; kept as a minimal repro path)
release.ymlubuntu-latesttag pushBuild & push multi-arch image, publish Helm chart
release-plugin.ymlubuntu-latesttag pushBuild & release the kubectl plugin
dashboard.ymlubuntu-latestschedule, pushGenerate the test results dashboard
sonarqube.ymlubuntu-latestpushSonarQube analysis

Disabled — pending QEMU migration

The following workflows used to run on a self-hosted GitHub Actions runner labelled new. That runner has been retired. They are renamed with a .yml.disabled suffix so GitHub Actions ignores them; they remain in the repo as a record of intent and so the migration work has a clear inventory.

FileJobsNotes
encryption.yml.disabled7Per-protocol encryption tests — same shape as integration.yml, should port cleanly to the QEMU composite action
scale.yml.disabled2Synthetic load against TrueNAS
snapclone-stress.yml.disabled2120-min snapshot/clone stress; was the only auto-firing one (workflow_run after Integration)
snapshot-clone-matrix.yml.disabled13Matrix of snapshot/clone scenarios across protocols
snapshot-debug.yml.disabled1Single focused snapshot debug run
compatibility.yml.disabled1Helm upgrade-compatibility test (old release → new release)
distro-compatibility.yml.disabled19K8s distros × protocols matrix (K3s, K0s, KubeSolo, Minikube, Talos, MicroK8s) — hardest to port because each distro needs its own cloud-init installer; will likely need per-distro composite actions

To re-enable any of these once migrated to the QEMU pattern: rename .yml.disabled.yml and replace runs-on: new with runs-on: ubuntu-24.04 plus a uses: ./.github/actions/qemu-vm step (see integration.yml for the canonical pattern).