You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test-suite/README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,9 +57,12 @@ cd test-suite/fhevm
57
57
./fhevm-cli test public-decrypt-http-ebool
58
58
./fhevm-cli test erc20
59
59
60
-
# Boot with a local coprocessor override
60
+
# Boot with a local coprocessor override (all services)
61
61
./fhevm-cli up --target latest-release --override coprocessor --profile local
62
62
63
+
# Boot with only specific coprocessor services built locally
64
+
./fhevm-cli up --target latest-release --override coprocessor:host-listener,tfhe-worker --profile local
65
+
63
66
# View logs
64
67
./fhevm-cli logs relayer
65
68
@@ -74,11 +77,17 @@ For the local CLI entrypoint and architecture, see [test-suite/fhevm/README.md](
74
77
To run one local component on top of an otherwise versioned stack, use `--override`:
75
78
76
79
```sh
80
+
# Override an entire group (builds all services locally)
77
81
./fhevm-cli up --target latest-release --override coprocessor --profile local
82
+
83
+
# Override specific services within a group (others pull from registry)
84
+
./fhevm-cli up --target latest-release --override coprocessor:host-listener,tfhe-worker --profile local
78
85
```
79
86
80
87
Supported override groups are `coprocessor`, `kms-connector`, `gateway-contracts`, `host-contracts`, and `test-suite`.
81
88
89
+
When specifying individual services, use the short suffix after the group prefix (e.g., `host-listener` not `coprocessor-host-listener`). Services that share a Docker image are automatically co-selected (e.g., `host-listener` includes `host-listener-poller`).
90
+
82
91
### Resuming a deployment
83
92
84
93
If a boot fails mid-way, you can resume from a specific step:
0 commit comments