Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -434,8 +434,8 @@ jobs:
if: github.event_name == 'release' || matrix.platform.features == 'cuda'

- name: Cache Cargo registry
# Skip flash-attn variants on PRs (only run on release)
if: github.event_name == 'release' || matrix.platform.features == 'cuda'
# Only use cache for flash-attn variants on releases (they take longer to build)
if: github.event_name == 'release' && matrix.platform.features != 'cuda'
uses: actions/cache@v5
with:
path: |
Expand All @@ -447,8 +447,8 @@ jobs:
linux-cargo-registry-

- name: Cache Cargo build
# Skip flash-attn variants on PRs (only run on release)
if: github.event_name == 'release' || matrix.platform.features == 'cuda'
# Only use cache for flash-attn variants on releases (they take longer to build)
if: github.event_name == 'release' && matrix.platform.features != 'cuda'
uses: actions/cache@v5
with:
path: target/
Expand Down
Loading