Use should_retry_failed_c2c_call
to avoid getting stuck in loop (#6…
#2488
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
name: Build caches | |
jobs: | |
build_all_debug: | |
name: Build all in debug mode | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.79.0 | |
override: true | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "build-debug" | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --tests | |
build_canister_wasms: | |
name: Build canister wasms | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.79.0 | |
override: true | |
- run: rustup target add wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "build-wasms" | |
- run: ./scripts/generate-all-canister-wasms.sh |