Skip to content

Commit 5a44826

Browse files
committed
Add crypto benchmarks to CI
1 parent 0c383e0 commit 5a44826

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.circleci/config.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ workflows:
2323
requires:
2424
- package_vm
2525
- package_vm_cranelift
26+
- package_crypto
2627
filters:
2728
branches:
2829
only:
2930
# Long living branches
3031
- main
3132
- /^[0-9]+\.[0-9]+$/
32-
# 👇 Add your branch here if benchmarking matters to your work
33+
# 👇Add your branch here if benchmarking matters to your work
3334
- benchmarking
3435
- update-wasmer
3536
- metering-restart
@@ -858,13 +859,17 @@ jobs:
858859
keys:
859860
- cargocache-v2-benchmarking-rust:1.47.0-{{ checksum "Cargo.lock" }}
860861
- run:
861-
name: Run benchmarks (Singlepass)
862+
name: Run vm benchmarks (Singlepass)
862863
working_directory: ~/project/packages/vm
863864
command: cargo bench --no-default-features -- --color never --save-baseline singlepass
864865
- run:
865-
name: Run benchmarks (Cranelift)
866+
name: Run vm benchmarks (Cranelift)
866867
working_directory: ~/project/packages/vm
867868
command: cargo bench --no-default-features --features cranelift -- --color never --save-baseline cranelift
869+
- run:
870+
name: Run crypto benchmarks
871+
working_directory: ~/project/packages/crypto
872+
command: cargo bench -- --color never --save-baseline crypto
868873
- save_cache:
869874
paths:
870875
- /usr/local/cargo/registry

0 commit comments

Comments
 (0)