airunner-native
September 17, 2026 ยท View on GitHub
Pinned native runtime sidecar (llama.cpp / whisper.cpp) build
tooling for
Capsize-Games/airunner
(AI Runner).
This repository owns only the C++ sidecar build -- cmake,
mingw-w64 and ninja cross-compiling a linux/windows matrix --
not any Python code. It's split out because that build has a release
cadence unrelated to the Python application: it only changes when a
pinned upstream llama.cpp/whisper.cpp commit bumps, which is rare,
and needs a different toolchain than the rest of the project.
An earlier version of this repository also carried the Python launcher
that starts the desktop app (airunner_native.launcher,
crash_handler, repo_paths). That code turned out not to belong
here: it's tightly coupled to airunner/airunner-services (it
exists only to bootstrap them) and changes in lockstep with the rest
of the application, not on an independent cadence -- splitting it
added cross-repo coordination for no real benefit. It moved back into
Capsize-Games/airunner's own native/ directory.
What's here
runtime_sidecars/runtime_pins.env-- exact upstream commits forllama.cppandwhisper.cpp, so bundled runtime binaries don't drift with either project's ownmasterbranch.scripts/build_runtime_sidecars.sh-- builds both binaries for a given target platform..github/workflows/native-runtime-sidecars.yml-- builds thelinux/windowsmatrix on every release published in this repository and attaches the resulting bundles as release assets.
Build locally
./scripts/build_runtime_sidecars.sh --target-platform linux
Requires cmake, mingw-w64, and ninja. Output lands in
build/runtime-sidecars/<platform>/{bin/,share/airunner/}.
Consuming a built bundle
Capsize-Games/airunner's own release pipeline downloads a pinned
release from here rather than building sidecars itself -- see that
repository's .github/native-sidecar-version for which tag.
Provenance
Extracted from Capsize-Games/airunner (issue
#2196, part
of the repository-split tracker
#2185).
History for the moved files is preserved (git filter-repo).
Licensing
GPL-3.0-only, matching the application this builds for. See
LICENSE.