Skip to content

Commit

Permalink
CI: Cache cargo files for rav1e.
Browse files Browse the repository at this point in the history
  • Loading branch information
fancycode committed Jul 12, 2024
1 parent 08a3d91 commit d18dbcb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install rust dependencies
if: ${{ env.WITH_RAV1E == '1' }}
run: |
sudo apt-get update
sudo apt-get install cargo nasm
- uses: Swatinem/rust-cache@v2
if: ${{ env.WITH_RAV1E == '1' }}
with:
shared-key: "rust"

- name: Install dependencies
run: |
./scripts/install-ci-linux.sh
Expand Down

0 comments on commit d18dbcb

Please sign in to comment.