diff --git a/.github/workflows/test-container.yml b/.github/workflows/test-container.yml index a60c327..602a83d 100644 --- a/.github/workflows/test-container.yml +++ b/.github/workflows/test-container.yml @@ -19,6 +19,11 @@ jobs: - name: Show Docker version run: docker version + - name: Build test image with no cache (${{ matrix.distro }}) + run: | + set -euo pipefail + distro="${{ matrix.distro }}" make build-no-cache + - name: Run container tests (${{ matrix.distro }}) run: | set -euo pipefail diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 384b6fe..6842e37 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -19,6 +19,11 @@ jobs: - name: Show Docker version run: docker version + - name: Build test image with no cache (${{ matrix.distro }}) + run: | + set -euo pipefail + distro="${{ matrix.distro }}" make build-no-cache + - name: Run E2E tests via make (${{ matrix.distro }}) run: | set -euo pipefail