From 1636acf38427a6f894286e104c509505f8acc972 Mon Sep 17 00:00:00 2001 From: Manuel Dewald Date: Wed, 19 Jul 2023 16:11:37 +0200 Subject: [PATCH] WIP: disabling cache for docker smoke test DO NOT MERGE --- .github/workflows/smoke.yml | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml index 042f25d08429..4d9ad7ae102a 100644 --- a/.github/workflows/smoke.yml +++ b/.github/workflows/smoke.yml @@ -257,13 +257,22 @@ jobs: LOCAL_GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | set -o pipefail - ./dependabot test \ - -f=smoke.yaml \ - -o=result.yaml \ - --cache=cache \ - --timeout=20m \ - --updater-image=ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:latest \ - 2>&1 | tee -a log.txt + if [[ "${{matrix.suite.name}}" == "docker" ]]; then + ./dependabot test \ + -f=smoke.yaml \ + -o=result.yaml \ + --timeout=20m \ + --updater-image=ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:latest \ + 2>&1 | tee -a log.txt + else + ./dependabot test \ + -f=smoke.yaml \ + -o=result.yaml \ + --cache=cache \ + --timeout=20m \ + --updater-image=ghcr.io/dependabot/dependabot-updater-${{ matrix.suite.ecosystem }}:latest \ + 2>&1 | tee -a log.txt + fi - name: Diff if: always()