From 2e605df18343e837ad545e19ada1fb06f3dc5adf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Svensson?= Date: Mon, 23 Sep 2024 23:20:38 +0200 Subject: [PATCH] Use Valkey 7.2.5 in CI for macOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Björn Svensson --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bea4d36..6562ed3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,7 +157,11 @@ jobs: steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Install dependencies - run: brew install ninja valkey + run: brew install ninja + - name: Install Valkey for non-cluster tests + run: | + git clone --depth 1 --branch 7.2.5 https://github.com/valkey-io/valkey.git + cd valkey && BUILD_TLS=yes make install - name: Build using CMake run: | mkdir build && cd build