2c12a140ae
- Remove forklift cargo wrapper from build-only-wasm.sh (direct cause of
build-linux-stable failures in container jobs)
- Add .env_remove("RUSTC_WRAPPER") to wasm-builder cargo subprocess to
prevent inheriting forklift from Parity CI container images
- Remove forklift from cargo-check-runtimes action and cmd.py benchmark
build command
- Update test_cmd.py expectations to match forklift removal
- Update no_feature_gated_method.stderr for rebrand: substrate_runtime →
bizinikiwi_runtime, sp_runtime_interface_proc_macro →
pezsp_runtime_interface_proc_macro, and expanded feature list
21 lines
566 B
YAML
21 lines
566 B
YAML
name: 'cargo check runtimes'
|
|
description: 'Runs `cargo check` for every directory in provided root.'
|
|
inputs:
|
|
root:
|
|
description: "Root directory. Expected to contain several cargo packages inside."
|
|
required: true
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Check
|
|
shell: bash
|
|
run: |
|
|
cd ${{ inputs.root }}
|
|
for directory in $(echo */); do
|
|
echo "_____Running cargo check for ${directory} ______";
|
|
cd ${directory};
|
|
pwd;
|
|
SKIP_WASM_BUILD=1 cargo check --locked;
|
|
cd ..;
|
|
done
|