diff options
| author | ruki <[email protected]> | 2026-02-09 22:55:06 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-02-09 22:55:06 +0800 |
| commit | 8d33fc825ba7d93e06bcada9dec24366c557b4ac (patch) | |
| tree | 89ae6b07b169494307208b95be009c2368334960 /xmake/actions/service/xmake.lua | |
| parent | f9fc4cd7f3f96be6bf0f3ae20633cd4c8b378b2f (diff) | |
improve remote build config
Diffstat (limited to 'xmake/actions/service/xmake.lua')
| -rw-r--r-- | xmake/actions/service/xmake.lua | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/xmake/actions/service/xmake.lua b/xmake/actions/service/xmake.lua index ed6772749..b292a73a2 100644 --- a/xmake/actions/service/xmake.lua +++ b/xmake/actions/service/xmake.lua @@ -38,7 +38,9 @@ task("service") " - xmake service --connect", " - xmake service --connect --remote", " - xmake service --connect --distcc", - " - xmake service --connect --remote --distcc" }, + " - xmake service --connect --remote --distcc", + " - xmake service --connect --host=windows", + " - xmake service --connect --host=10.5.139.8:9691" }, {nil, "session" , "kv", nil,"Connect with the given session name, it will generate a session id via name.", "e.g.", " -- xmake service --connect --ccache --session=foo" }, @@ -68,6 +70,11 @@ task("service") {nil, "gen-token", "k", nil, "Generate a new token in the server.", "e.g.", " - xmake service --gen-token" }, + {nil, "host", "kv", nil, "Connect to the specific host by name or address.", + "e.g.", + " - xmake service --connect --host=windows", + " - xmake service --connect --host=10.5.139.8:9691", + " - xmake service --connect --host=10.5.139.8" }, {nil, "logs", "k", nil, "Show service logs if the daemon service has been started." }, {nil, "status", "k", nil, "Show service status if the daemon service has been started." }, {nil, "values", "vs", nil, "The values list for pull/.. options." } |
