@nnova/runner 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @nnova/runner
|
|
2
2
|
|
|
3
|
+
如容器 DNS 异常,可指定连接 IP,保留域名路由:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npx --yes --package @nnova/runner nova-runner \
|
|
7
|
+
--server "http://nova-grpc.8and1.cn" \
|
|
8
|
+
--connect-ip "223.109.200.118" \
|
|
9
|
+
--token "<runner-token>"
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
也可在 TOML 配置中设置 `connect_ip = "223.109.200.118"`。IP 支持 IPv4/IPv6,
|
|
13
|
+
端口取自 server;HTTPS 仍验证 server 域名。省略时使用系统 DNS,IP 变化需更新配置。
|
|
14
|
+
|
|
3
15
|
跨平台发布的 `nova-runner` Rust 可执行文件。该包只负责选择并启动当前平台的
|
|
4
16
|
二进制,Runner 的 gRPC、执行、取消和 workspace 行为仍全部实现于
|
|
5
17
|
`crates/runner`。
|
|
@@ -19,9 +31,15 @@ curl -fsSL https://github.com/hu-bo/nova/releases/latest/download/install-runner
|
|
|
19
31
|
--workspace "$HOME"
|
|
20
32
|
```
|
|
21
33
|
|
|
22
|
-
脚本验证 GitHub Release 中的 SHA-256,通过 sudo
|
|
34
|
+
脚本验证 GitHub Release 中的 SHA-256,通过 sudo 安装 glibc 2.34+ x64 binary 和
|
|
23
35
|
`nova-runner.service`。sudo 只用于安装和管理 systemd;unit 始终以发起安装的
|
|
24
|
-
普通用户运行 Runner,并在开机时自动启动。
|
|
36
|
+
普通用户运行 Runner,并在开机时自动启动。Linux 产物不用静态 musl 构建,避免部分
|
|
37
|
+
本地 DNS 对 A / AAAA 的异常响应导致有效 IPv4 地址被判为临时解析失败。
|
|
38
|
+
|
|
39
|
+
npm 包与 GitHub Release 使用同一个 `x86_64-unknown-linux-gnu` 产物。发布流程在
|
|
40
|
+
Rocky Linux 9 中验证动态 libc 依赖并执行 `--help`。已有容器无需修改 DNS 配置,
|
|
41
|
+
但需要安装包含新产物的 npm 版本;可用 `getconf GNU_LIBC_VERSION` 检查 glibc 版本。
|
|
42
|
+
这项兼容性调整不修复上游 DNS 的 AAAA 错误,连接结果仍需在目标环境验证。
|
|
25
43
|
|
|
26
44
|
Web UI 默认使用 `https://github.com/hu-bo/nova/releases/latest/download`。部署时可通过
|
|
27
45
|
`VITE_RUNNER_RELEASE_URL` 替换 Windows 安装包和 Release 资产的基础地址,通过
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|