Check cranelift benchmarks in CI (#3494)

* Check cranelift benchmarks in CI

* Use appropriate cargo subcommand

to check benchmarks
This commit is contained in:
Nils Martel
2021-11-01 15:33:45 +01:00
committed by GitHub
parent 9a27fdad86
commit 240835f8e4

View File

@@ -139,6 +139,9 @@ jobs:
- run: cargo check -p wasmtime --no-default-features --features cranelift - run: cargo check -p wasmtime --no-default-features --features cranelift
- run: cargo check -p wasmtime --no-default-features --features cranelift,wat,async,cache - run: cargo check -p wasmtime --no-default-features --features cranelift,wat,async,cache
# Check that benchmarks of the cranelift project build
- run: cargo check --benches -p cranelift-codegen
# Check some feature combinations of the `wasmtime-c-api` crate # Check some feature combinations of the `wasmtime-c-api` crate
- run: cargo check -p wasmtime-c-api --no-default-features - run: cargo check -p wasmtime-c-api --no-default-features
- run: cargo check -p wasmtime-c-api --no-default-features --features wat - run: cargo check -p wasmtime-c-api --no-default-features --features wat