From b6a43a1dcee8205d71b37d066efb064a3631e743 Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Sat, 11 Sep 2021 12:32:03 +0200 Subject: [PATCH] Bugfix --- .../github-workflows/setup-variables.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/continuous-integration/github-workflows/setup-variables.sh b/scripts/continuous-integration/github-workflows/setup-variables.sh index 288b2fb..56a7741 100644 --- a/scripts/continuous-integration/github-workflows/setup-variables.sh +++ b/scripts/continuous-integration/github-workflows/setup-variables.sh @@ -5,10 +5,6 @@ export MAVEN_OPTS="--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java. echo "MATRIX_OS: $GH_MATRIX_OS" echo "MATRIX_ARCH: $GH_MATRIX_ARCH" -cd ./scripts/core/ -source ./setup-variables.sh -cd ../../ - if [ "$GH_MATRIX_OS" == "macos-10.15" ]; then export PCRE="E" else @@ -82,6 +78,10 @@ elif [[ "$OPERATING_SYSTEM_NAME" == "linux" ]]; then export CPU_CORES=" -- -j${CPU_CORES_NUM}" fi +cd ./scripts/core/ +source ./setup-variables.sh +cd ../../ + # ====== Print variables echo "REVISION=${REVISION}" echo "BUILD_TYPE=${BUILD_TYPE}"