From 3ac678c15bc229cef35da51dd53d65b5534550fb Mon Sep 17 00:00:00 2001 From: Bartek Tofel Date: Tue, 9 Jan 2024 18:14:58 -0300 Subject: [PATCH] add missing pyrscope enabled var --- .github/workflows/client-compatibility-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/client-compatibility-tests.yml b/.github/workflows/client-compatibility-tests.yml index 04e50a9e356..28b5ee6ba22 100644 --- a/.github/workflows/client-compatibility-tests.yml +++ b/.github/workflows/client-compatibility-tests.yml @@ -194,6 +194,12 @@ jobs: execution_layer="geth" fi + if [ -n "$PYROSCOPE_SERVER" ]; then + pyroscope_enabled=true + else + pyroscope_enabled=false + fi + cat << EOF > config.toml [Network] selected_networks=$selected_networks @@ -213,7 +219,7 @@ jobs: EOF BASE64_CONFIG_OVERRIDE=$(cat config.toml | base64 -w 0) - # echo ::add-mask::$BASE64_CONFIG_OVERRIDE + echo ::add-mask::$BASE64_CONFIG_OVERRIDE echo "BASE64_CONFIG_OVERRIDE=$BASE64_CONFIG_OVERRIDE" >> $GITHUB_ENV touch .root_dir - name: Debug pwd