From e09b0eb1b93eb4a5860a5bd0d0b10bed6fe5abbb Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 7 Aug 2023 03:05:47 -0400 Subject: [PATCH] feat: timeout docker image builds in CI ARM usually takes quite a while to build. If it takes more than ~15 minutes, then it is usually going to fail anyways, so timeout early. AMD64 takes ~3 minutes, and ARM64 appears to take 15 minutes. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afd700308..6bfa69123 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,6 +106,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: build docker image + timeout-minutes: 20 run: | docker buildx build \ --platform ${{ matrix.architecture }} \