From e2767141f5b1867154ccfd6c7c87b727eb075593 Mon Sep 17 00:00:00 2001 From: Cian Hatton Date: Thu, 27 Oct 2022 10:29:07 +0100 Subject: [PATCH] chore: fetch makefile dependencies before building docker image --- .github/workflows/e2e-compatibility.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/e2e-compatibility.yaml b/.github/workflows/e2e-compatibility.yaml index 13922c0ec5b..0a3b436f41f 100644 --- a/.github/workflows/e2e-compatibility.yaml +++ b/.github/workflows/e2e-compatibility.yaml @@ -42,6 +42,10 @@ jobs: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} + - name: Fetch Makefile dependencies + run: | + mkdir -p contrib/devtools + curl https://raw.githubusercontent.com/cosmos/ibc-go/main/contrib/devtools/Makefile -o contrib/devtools/Makefile - name: Fetch latest Dockerfile run: curl https://raw.githubusercontent.com/cosmos/ibc-go/main/Dockerfile -o Dockerfile - name: Build image