We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f3b6ab commit ea03325Copy full SHA for ea03325
.github/workflows/build.yml
@@ -76,8 +76,18 @@ jobs:
76
echo "OS=${os:-'unknown'}" >> $GITHUB_ENV
77
echo "ARCH=${arch:-'unknown'}" >> $GITHUB_ENV
78
79
+ - name: Cache rustup toolchain
80
+ uses: actions/cache@v4
81
+ with:
82
+ path: |
83
+ ~/.rustup
84
+ ~/.cargo/bin
85
+ key: ${{ runner.os }}-${{ matrix.platform.target }}-rustup-${{ hashFiles('rust-toolchain.toml') }}
86
+ restore-keys: |
87
+ ${{ runner.os }}-${{ matrix.platform.target }}-rustup-
88
+
89
- name: Cache Homebrew packages (macOS)
- if: runner.os == 'macOS'
90
+ if: ${{ runner.os == 'macOS' }}
91
uses: actions/cache@v4
92
with:
93
path: |
0 commit comments