Skip to content

Commit

Permalink
Merge pull request #1042 from CosmWasm/profiler
Browse files Browse the repository at this point in the history
Prototype: Profiler
  • Loading branch information
webmaster128 authored Oct 11, 2021
2 parents 71b42fb + 151cbe8 commit 29cd4e1
Show file tree
Hide file tree
Showing 12 changed files with 2,294 additions and 129 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ workflows:
- package_std
- package_storage
- package_vm
- package_profiler
- contract_burner
- contract_crypto_verify
- contract_hackatom
Expand Down Expand Up @@ -232,6 +233,33 @@ jobs:
- target/debug/deps
key: cargocache-v2-package_vm-rust:1.51.0-{{ checksum "Cargo.lock" }}

package_profiler:
docker:
- image: rust:1.51.0
steps:
- checkout
- run:
name: Version information
command: rustc --version; cargo --version; rustup --version; rustup target list --installed
- restore_cache:
keys:
- cargocache-v2-package_profiler-rust:1.51.0-{{ checksum "Cargo.lock" }}
- run:
name: Build
working_directory: ~/project/packages/profiler
command: cargo build --locked
- run:
name: Run tests
working_directory: ~/project/packages/profiler
command: cargo test --locked
- save_cache:
paths:
- /usr/local/cargo/registry
- target/debug/.fingerprint
- target/debug/build
- target/debug/deps
key: cargocache-v2-package_profiler-rust:1.51.0-{{ checksum "Cargo.lock" }}

contract_burner:
docker:
- image: rust:1.51.0
Expand Down
Loading

0 comments on commit 29cd4e1

Please sign in to comment.