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 cef08e0 commit 90642b0Copy full SHA for 90642b0
.github/workflows/main.yml
@@ -194,6 +194,18 @@ jobs:
194
with:
195
name: engine-release
196
197
+ - name: Cache build
198
+ uses: actions/cache@v3
199
+ with:
200
+ path: |
201
+ ~/.cargo/bin/
202
+ ~/.cargo/registry/index/
203
+ ~/.cargo/registry/cache/
204
+ ~/.cargo/git/db/
205
+ target/
206
+ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
207
+ if: github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/v')
208
+
209
# Build `js-compute-runtime`
210
- run: PREBUILT_ENGINE=engine-release/js-compute-runtime.wasm $CENTOS cargo build --release
211
0 commit comments