From 0d51f71b35c535501f1342a36d08caeea13bf8bf Mon Sep 17 00:00:00 2001 From: barshaul Date: Thu, 13 Jun 2024 14:30:47 +0000 Subject: [PATCH] tmp check --- .github/workflows/install-valkey/action.yml | 2 +- node/tests/SharedTests.ts | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/install-valkey/action.yml b/.github/workflows/install-valkey/action.yml index 4b9d56a565..ebe0fd058e 100644 --- a/.github/workflows/install-valkey/action.yml +++ b/.github/workflows/install-valkey/action.yml @@ -40,7 +40,7 @@ runs: echo "Installing valkey ${{ inputs.valkey-version }}" git clone https://github.com/valkey-io/valkey.git cd valkey - git checkout ${{ inputs.valkey-version }}ד + git checkout ${{ inputs.valkey-version }} make sudo make install diff --git a/node/tests/SharedTests.ts b/node/tests/SharedTests.ts index 823ebe4ad3..6b6b6264ad 100644 --- a/node/tests/SharedTests.ts +++ b/node/tests/SharedTests.ts @@ -53,6 +53,8 @@ export async function checkIfServerVersionLessThan( version[1].toString() + "." + version[2].toString(); + console.log("recieved version to compare: " + versionToCompare + ", min version = " + minVersion); + return versionToCompare < minVersion; } @@ -3096,7 +3098,8 @@ export function runBaseTests(config: { await checkIfServerVersionLessThan("7.0.0"); const versionLessThan72 = await checkIfServerVersionLessThan("7.2.0"); - + console.log("versionLessThan7="+versionLessThan7); + console.log("versionLessThan72="+versionLessThan72); expect(await client.object_encoding(non_existing_key)).toEqual( null, );