Update push-cloudflare.yaml

This commit is contained in:
二叉树树 2025-11-21 18:24:26 +08:00 committed by GitHub
parent 7a108557a9
commit c02015a6f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -18,17 +18,17 @@ jobs:
# 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
- run: rustup toolchain install stable --profile minimal
- name: Cache Cargo registry and build artifacts
uses: actions/cache@v3
with:
path: |
target
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
key: cargo-build-cache-${{ github.run_id }}
restore-keys: |
cargo-build-cache-
# - name: Cache Cargo registry and build artifacts
# uses: actions/cache@v3
# with:
# path: |
# target
# ~/.cargo/bin
# ~/.cargo/registry
# ~/.cargo/git
# key: cargo-build-cache-${{ github.run_id }}
# restore-keys: |
# cargo-build-cache-
- run: rustup target add wasm32-unknown-unknown
- name: Install lld
run: sudo apt install -y lld clang gcc llvm