Update push-cloudflare.yaml
This commit is contained in:
parent
7a108557a9
commit
c02015a6f4
1 changed files with 11 additions and 11 deletions
22
.github/workflows/push-cloudflare.yaml
vendored
22
.github/workflows/push-cloudflare.yaml
vendored
|
|
@ -18,17 +18,17 @@ jobs:
|
||||||
# selecting a toolchain either by action or manual `rustup` calls should happen
|
# selecting a toolchain either by action or manual `rustup` calls should happen
|
||||||
# before the plugin, as the cache uses the current rustc version as its cache key
|
# before the plugin, as the cache uses the current rustc version as its cache key
|
||||||
- run: rustup toolchain install stable --profile minimal
|
- run: rustup toolchain install stable --profile minimal
|
||||||
- name: Cache Cargo registry and build artifacts
|
# - name: Cache Cargo registry and build artifacts
|
||||||
uses: actions/cache@v3
|
# uses: actions/cache@v3
|
||||||
with:
|
# with:
|
||||||
path: |
|
# path: |
|
||||||
target
|
# target
|
||||||
~/.cargo/bin
|
# ~/.cargo/bin
|
||||||
~/.cargo/registry
|
# ~/.cargo/registry
|
||||||
~/.cargo/git
|
# ~/.cargo/git
|
||||||
key: cargo-build-cache-${{ github.run_id }}
|
# key: cargo-build-cache-${{ github.run_id }}
|
||||||
restore-keys: |
|
# restore-keys: |
|
||||||
cargo-build-cache-
|
# cargo-build-cache-
|
||||||
- run: rustup target add wasm32-unknown-unknown
|
- run: rustup target add wasm32-unknown-unknown
|
||||||
- name: Install lld
|
- name: Install lld
|
||||||
run: sudo apt install -y lld clang gcc llvm
|
run: sudo apt install -y lld clang gcc llvm
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue