This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new 23370922 Fix minica version in CI workflow to prevent TLS test failure
(#2307)
23370922 is described below
commit 23370922986f9fa45773f004315f8b9e03d1c431
Author: Twice <[email protected]>
AuthorDate: Sat May 11 14:24:03 2024 +0900
Fix minica version in CI workflow to prevent TLS test failure (#2307)
---
.github/workflows/kvrocks.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/kvrocks.yaml b/.github/workflows/kvrocks.yaml
index 925d8ad7..affa0a38 100644
--- a/.github/workflows/kvrocks.yaml
+++ b/.github/workflows/kvrocks.yaml
@@ -292,7 +292,7 @@ jobs:
GOCASE_RUN_ARGS=""
if [[ -n "${{ matrix.with_openssl }}" ]] && [[ "${{ matrix.os }}" ==
ubuntu* ]]; then
git clone https://github.com/jsha/minica
- cd minica && go build && cd ..
+ cd minica && git checkout 96a5c93723cf3d34b50b3e723a9f05cd3765bc67
&& go build && cd ..
./minica/minica --domains localhost
cp localhost/cert.pem tests/gocase/tls/cert/server.crt
cp localhost/key.pem tests/gocase/tls/cert/server.key