Skip to content

Commit

Permalink
Fix CI caching
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai committed Aug 24, 2023
1 parent b23b36f commit a7dee5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# * saves about 1min per workflow by skipping the actual cache write
# downsides:
# * PRs that update rust version or changes deps will be slow to iterate on due to changes not being cached.
save-if: ${{ github.ref == 'refs/head/main' }}
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: cache custom ubuntu packages
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windsock_benches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# * saves about 1min per workflow by skipping the actual cache write
# downsides:
# * PRs that update rust version or changes deps will be slow to iterate on due to changes not being cached.
save-if: ${{ github.ref == 'refs/head/main' }}
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Ensure that custom benches run
run: |
# run some extra cases that arent handled by nextest
Expand Down

0 comments on commit a7dee5c

Please sign in to comment.