diff options
| author | Stefan Boberg <[email protected]> | 2026-04-14 16:18:23 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2026-04-14 16:18:23 +0200 |
| commit | 053b7373357d2555bac111b94c6909bc148f24ac (patch) | |
| tree | 456a8ce2a1b38ff6aef342324f7fa4c17fdadd30 /src/zenovermind/xmake.lua | |
| parent | 5.8.4 (diff) | |
| download | zen-sb/compute-overmind.tar.xz zen-sb/compute-overmind.zip | |
Add Overmind provisioner alongside Horde and Nomadsb/compute-overmind
Introduces the zenovermind module with an HTTP client targeting the
Overmind REST gateway (/v1/jobs) and a management-thread provisioner
that schedules, polls, and cancels jobs following the same pattern as
the existing Nomad provisioner. Wired into the compute server with
full CLI options (--overmind-*), lifecycle management, and maintenance
tick support behind the ZEN_WITH_OVERMIND compile flag.
Diffstat (limited to 'src/zenovermind/xmake.lua')
| -rw-r--r-- | src/zenovermind/xmake.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/zenovermind/xmake.lua b/src/zenovermind/xmake.lua new file mode 100644 index 000000000..49d667f27 --- /dev/null +++ b/src/zenovermind/xmake.lua @@ -0,0 +1,10 @@ +-- Copyright Epic Games, Inc. All Rights Reserved. + +target('zenovermind') + set_kind("static") + set_group("libs") + add_headerfiles("**.h") + add_files("**.cpp") + add_includedirs("include", {public=true}) + add_deps("zencore", "zenhttp", "zenutil") + add_packages("json11") |