From f73e9982991bba33fd9e755cc8b494d7d1f656ad Mon Sep 17 00:00:00 2001 From: violet Date: Tue, 16 Jul 2024 12:01:03 -0400 Subject: [PATCH] docker pull --- .github/workflows/interchain-test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/interchain-test.yml b/.github/workflows/interchain-test.yml index 1380fc4f3f6..62350060346 100644 --- a/.github/workflows/interchain-test.yml +++ b/.github/workflows/interchain-test.yml @@ -55,4 +55,7 @@ jobs: TEST_NEW_GAIA_IMAGE_VERSION: "${{ matrix.test_version }}" TEST_UPGRADE_NAME: "${{ matrix.upgrade_name }}" run: | + # This docker pull/tag is a quick hack only necessary for v19, since there were no official v18 images built. + # Once we're testing 19 -> 20 this can be removed + docker pull "ghcr.io/hyphacoop/gaia:v18.1.0" && docker tag "ghcr.io/hyphacoop/gaia:v18.1.0" "ghcr.io/${{ github.repository_owner }}/ics:v18.1.0" go test -v ./tests/interchain/... -failfast -p 1 -timeout 5h -run="^${{ matrix.test_name }}"