From a5747d25e0ae4d5fadbbc1174e7a9280d0150876 Mon Sep 17 00:00:00 2001 From: Daniel Sanche Date: Tue, 3 Nov 2020 14:46:03 -0800 Subject: [PATCH] fix: e2e release tests (#555) The end-to-end tests targeting the latest release are failing. The issue is on the latest v0.4.0 release, we removed the `cloudshell_working_dir`argument, which is expected in the test scripts. This PR removes that variable so the tests will run again --- .github/workflows/e2e-release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/e2e-release.yml b/.github/workflows/e2e-release.yml index b4b46d4c3..8b72b7d91 100644 --- a/.github/workflows/e2e-release.yml +++ b/.github/workflows/e2e-release.yml @@ -45,21 +45,19 @@ jobs: echo ::set-output name=repo::${REPO} BRANCH=$(echo $BTN_CONTENT | grep -o -P '(?<=cloudshell_git_branch\=).*?(?=&)') echo ::set-output name=branch::${BRANCH} - WORKING_DIR=$(echo $BTN_CONTENT | grep -o -P '(?<=cloudshell_working_dir\=).*?(?=&)') - echo ::set-output name=dir::${WORKING_DIR} CLOUDSHELL_IMAGE=$(echo $BTN_CONTENT | grep -o -P '(?<=cloudshell_image\=).*?(?=")') echo ::set-output name=cloudshell_image::${CLOUDSHELL_IMAGE} - name: Run Install Script timeout-minutes: 30 run: | set -x + docker pull ${{ steps.website_variables.outputs.cloudshell_image }} # run install script docker run --rm \ -e project_id=${{ env.PROJECT_ID }} \ -e skip_workspace_prompt=1 \ -e release_repo=${{ steps.website_variables.outputs.repo }} \ -e release_branch=${{ steps.website_variables.outputs.branch }} \ - -e release_dir=${{ steps.website_variables.outputs.dir }} \ -v ~/.config:/root/.config \ -v `pwd`:/sandbox-shared \ --entrypoint /sandbox-shared/.github/workflows/e2e_scripts/run_install.sh \