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 263fb46 commit 33db938Copy full SHA for 33db938
.github/workflows/release-please.yml
@@ -85,6 +85,20 @@ jobs:
85
- uses: ./.github/actions/install-rust
86
with:
87
path: c-dependencies
88
+
89
+ - name: Restore wasm-tools from cache
90
+ uses: actions/cache@v3
91
+ id: wasm-tools
92
+ with:
93
+ path: "/home/runner/.cargo/bin/wasm-tools"
94
+ key: crate-cache-wasm-tools-${{ env.wasm-tools_version }}
95
96
+ - name: "Check wasm-tools has been restored"
97
+ if: steps.wasm-tools.outputs.cache-hit != 'true'
98
+ run: |
99
+ echo "wasm-tools was not restored from the cache"
100
+ echo "bailing out from the build early"
101
+ exit 1
102
103
- name: Cache SpiderMonkey object files
104
uses: actions/cache@v2
0 commit comments