Skip to content

Commit

Permalink
WIP: disabling cache for docker smoke test
Browse files Browse the repository at this point in the history
DO NOT MERGE
  • Loading branch information
Manuel Dewald committed Jul 19, 2023
1 parent 4bd1174 commit 1636acf
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 1636acf

Please sign in to comment.