Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Disable some caching #1769

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/actions/quic-interop-runner/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ runs:
- uses: actions/setup-python@v5
with:
python-version: 3.8
cache: 'pip'
cache-dependency-path: 'quic-interop-runner/requirements.txt'
# This puts too much stress on our cache, causing other things to be flushed too early:
# cache: 'pip'
# cache-dependency-path: 'quic-interop-runner/requirements.txt'

- name: Install Python packages
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/qns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
build-args: |
RUST_VERSION=stable
cache-from: type=gha
cache-to: type=gha,mode=max
# Setting `mode` to `max` puts too much stress on our cache,
# causing other things to be flushed too early.
cache-to: type=gha,mode=min
# On pull requests only build amd64 for the sake of CI time.
platforms: ${{ github.event_name == 'pull_request' && 'linux/amd64' || 'linux/amd64, linux/arm64' }}
load: ${{ github.event_name == 'pull_request' }}
Expand Down