From 18f8bca5e5a1462eaed38b7a7046780d4f01ee00 Mon Sep 17 00:00:00 2001 From: Peter Luitjens <43619525+busma13@users.noreply.github.com> Date: Wed, 13 Nov 2024 09:19:41 -0700 Subject: [PATCH] Docker image cache fix (#1289) This PR makes the following changes: - update workflow to use skip-image-deletion flag on `asset` test run. This prevents the `api` test run from having to pull docker images. ref: [#3811](https://github.com/terascope/teraslice/issues/3811) --- .github/workflows/test-asset.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-asset.yml b/.github/workflows/test-asset.yml index 07c013f8..47c8c208 100644 --- a/.github/workflows/test-asset.yml +++ b/.github/workflows/test-asset.yml @@ -61,7 +61,7 @@ jobs: key: docker-images-${{ hashFiles('./images/image-list.txt') }} - name: Test asset for ${{ matrix.search-version }} - run: yarn --silent test:${{ matrix.search-version }} + run: SKIP_IMAGE_DELETION='true' yarn --silent test:${{ matrix.search-version }} - name: Test apis for ${{ matrix.search-version }} run: yarn --silent test:${{ matrix.search-version }}