From d6f8cdfb0e96c6d0df0c9335e6a7466379625db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Weisbarth?= Date: Fri, 6 Oct 2023 14:35:01 +0200 Subject: [PATCH] Fix 3 --- .../workflows/acceptance_tests_buildin_close.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/acceptance_tests_buildin_close.yaml b/.github/workflows/acceptance_tests_buildin_close.yaml index aaec228160..736e9222d2 100644 --- a/.github/workflows/acceptance_tests_buildin_close.yaml +++ b/.github/workflows/acceptance_tests_buildin_close.yaml @@ -13,9 +13,9 @@ env: SERVICE_OFFERING_ENABLED: false PR_NUMBER: "${{ github.event.pull_request.number }}" DEPLOYMENT_NAME: "autoscaler-buildin-${{ github.event.pull_request.number }}" - BBL_STATE_PATH: "${{ github.workspace }}/bbl/bbl-state" - AUTOSCALER_DIR: "${{ github.workspace }}/app-autoscaler-release" - CI_DIR: "${{ github.workspace }}/app-autoscaler-release/ci" + # BBL_STATE_PATH: "${{ github.workspace }}/bbl/bbl-state" + # AUTOSCALER_DIR: "${{ github.workspace }}/app-autoscaler-release" + # CI_DIR: "${{ github.workspace }}/app-autoscaler-release/ci" jobs: deployment_cleanup: @@ -41,7 +41,9 @@ jobs: # The subsequent assignment is needed by the checkout-action to behave properly! # See: - GITHUB_WORKSPACE='${{ github.workspace }}' + export BBL_STATE_PATH="${GITHUB_WORKSPACE}/bbl/bbl-state" + declare -r AUTOSCALER_DIR="${GITHUB_WORKSPACE}/app-autoscaler-release" + #export CI_DIR="${GITHUB_WORKSPACE}/app-autoscaler-release/ci" echo "GITHUB_WORKSPACE = ${GITHUB_WORKSPACE}" echo "github.workspace = ${{ github.workspace }}" @@ -49,4 +51,5 @@ jobs: ls -lah . # TODO: Debug ls -lah '${{ github.workspace }}' # TODO: Debug - make --directory="${AUTOSCALER_DIR}" deploy-cleanup + echo 'Ready!' + #make --directory="${AUTOSCALER_DIR}" deploy-cleanup