PragmaTwice commented on code in PR #797:
URL: https://github.com/apache/incubator-kvrocks/pull/797#discussion_r962184271
##########
.github/workflows/kvrocks.yaml:
##########
@@ -164,6 +173,18 @@ jobs:
run: |
export ${{ matrix.runtime_env_vars }}
./x.py test tcl build --cli-path $HOME/local/bin/redis-cli
--dont-clean
+ if [[ -z "${{ matrix.without_openssl }}" ]] && [[ "${{ matrix.os }}"
== ubuntu* ]]; then
+ git clone https://github.com/jsha/minica
+ cd minica && go build && cd ..
+ ./minica/minica --domains localhost
+ mkdir -p tests/tcl/tests/tls
+ cp localhost/cert.pem tests/tcl/tests/tls/server.crt
+ cp localhost/key.pem tests/tcl/tests/tls/server.key
+ cp localhost/cert.pem tests/tcl/tests/tls/client.crt
+ cp localhost/key.pem tests/tcl/tests/tls/client.key
+ cp minica.pem tests/tcl/tests/tls/ca.crt
+ ./x.py test tcl build --tls --single unit/tls --single
unit/command --dont-clean
Review Comment:
```suggestion
./x.py test tcl build --tls --single unit/tls --dont-clean
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]