From 1defdf1bc175c99625d6f2537f7f7a6ac5582792 Mon Sep 17 00:00:00 2001 From: Aaron Buchwald Date: Fri, 9 Jul 2021 10:10:20 -0400 Subject: [PATCH] Disable e2e matchup in favor of explicit tag --- .github/workflows/run_e2e_tests.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run_e2e_tests.sh b/.github/workflows/run_e2e_tests.sh index a69f8d4e54..04f297fc7e 100755 --- a/.github/workflows/run_e2e_tests.sh +++ b/.github/workflows/run_e2e_tests.sh @@ -45,12 +45,14 @@ echo "Using $avalanche_testing_image for e2e tests" # Defines the avalanchego tag to use # Either uses the same tag as the current branch or uses the default -if docker_tag_exists $avalanchego_repo $current_branch; then - echo "$avalanchego_repo:$current_branch exists; using this avalanchego image to run e2e tests" - AVALANCHE_VERSION=$current_branch -else - echo "$avalanchego_repo $current_branch does NOT exist; using the default image to run e2e tests" -fi +# Disable matchup in favor of explicit tag +# TODO re-enable matchup when our workflow better supports it. +# if docker_tag_exists $avalanchego_repo $current_branch; then +# echo "$avalanchego_repo:$current_branch exists; using this avalanchego image to run e2e tests" +# AVALANCHE_VERSION=$current_branch +# else +# echo "$avalanchego_repo $current_branch does NOT exist; using the default image to run e2e tests" +# fi # pulling the avalanche-testing image docker pull $avalanche_testing_image