From fad9dccc53cf1f41597fd2b87d23a24e1c4cc4b8 Mon Sep 17 00:00:00 2001 From: Brian Caswell Date: Thu, 6 Feb 2025 13:55:32 -0500 Subject: [PATCH] add rust-cache support (#617) --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4241817..c5b5fe1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.2.2 + - uses: Swatinem/rust-cache@v2 - name: build run: eng/ci.sh - name: Run tests @@ -40,6 +41,7 @@ jobs: runs-on: ubuntu-22.04-arm steps: - uses: actions/checkout@v4.2.2 + - uses: Swatinem/rust-cache@v2 - name: build run: eng/ci.sh - name: Run tests @@ -61,6 +63,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - uses: actions/checkout@v4.2.2 + - uses: Swatinem/rust-cache@v2 - name: build avml-convert run: cargo build --release --bin avml-convert --locked - name: build avml-upload