From b7dfa6897fe60edf4049cf9fcaa5f4509ce354f3 Mon Sep 17 00:00:00 2001 From: Andreas Karlsson Date: Fri, 25 Apr 2025 23:17:19 +0200 Subject: [PATCH] Only enable TDE_MODE for the tests with global TDE The TDE_MODE environment variable disables tests we actually want to run in our Github Actions. This change is also necessary to in a future commit disable the pg_tde tests in the global TDE mode. --- ci_scripts/configure-global-tde.sh | 1 + ci_scripts/env.sh | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/ci_scripts/configure-global-tde.sh b/ci_scripts/configure-global-tde.sh index 09c64082bcf..40d4cdbd26d 100644 --- a/ci_scripts/configure-global-tde.sh +++ b/ci_scripts/configure-global-tde.sh @@ -8,6 +8,7 @@ source $SCRIPT_DIR/env.sh cd "$SCRIPT_DIR/.." source "$SCRIPT_DIR/env.sh" +export TDE_MODE=1 export PATH=$INSTALL_DIR/bin:$PATH export DATA_DIR=$INSTALL_DIR/data export PGDATA="${1:-$DATA_DIR}" diff --git a/ci_scripts/env.sh b/ci_scripts/env.sh index 558a01d7f08..1c729ccfd21 100644 --- a/ci_scripts/env.sh +++ b/ci_scripts/env.sh @@ -1,4 +1,3 @@ #!/bin/bash -export TDE_MODE=1 export PERCONA_SERVER_VERSION=17.4.1