Skip to content

Commit

Permalink
Remove packages/profiler
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Oct 24, 2022
1 parent 1d19b46 commit 2994eb2
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 2,165 deletions.
32 changes: 0 additions & 32 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ workflows:
- package_std
- package_storage
- package_vm
- package_profiler
- contract_burner
- contract_crypto_verify
- contract_cyberpunk
Expand Down Expand Up @@ -377,33 +376,6 @@ jobs:
- target/debug/deps
key: cargocache-v2-package_vm-rust:1.59.0-{{ checksum "Cargo.lock" }}

package_profiler:
docker:
- image: rust:1.59.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.59.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.59.0-{{ checksum "Cargo.lock" }}

contract_burner:
docker:
- image: rust:1.59.0
Expand Down Expand Up @@ -1037,10 +1009,6 @@ jobs:
name: Clippy linting on derive
working_directory: ~/project/packages/derive
command: cargo clippy --all-targets -- -D warnings
- run:
name: Clippy linting on profiler
working_directory: ~/project/packages/profiler
command: cargo clippy --all-targets -- -D warnings
- run:
name: Clippy linting on schema
working_directory: ~/project/packages/schema
Expand Down
1 change: 0 additions & 1 deletion .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ pull_request_rules:
- label!=WIP
# We need to list them all individually. Here is why: https://doc.mergify.io/conditions.html#validating-all-status-check
- "status-success=ci/circleci: package_crypto"
- "status-success=ci/circleci: package_profiler"
- "status-success=ci/circleci: package_schema"
- "status-success=ci/circleci: package_std"
- "status-success=ci/circleci: package_storage"
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ and this project adheres to

- all: Bump a few dependency versions to make the codebase compile with
`-Zminimal-versions` ([#1465]).
- cosmwasm-profiler: Package was removed 🪦. It served its job showing us that we
cannot properly measure different runtimes for differet Wasm opcodes.

[#1465]: https://github.com/CosmWasm/cosmwasm/pull/1465

Expand Down
83 changes: 1 addition & 82 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ coverage:

ignore:
- "contracts"
- "packages/profiler"
# Disabled due to "cargo_tarpaulin: Failed to get test coverage! Error: Failed to run tests: Error running test - SIGILL raised in 5835"
- "packages/vm"

Expand Down
1 change: 0 additions & 1 deletion devtools/check_workspace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ command -v shellcheck >/dev/null && shellcheck "$0"
cargo fmt
(cd packages/crypto && cargo check && cargo clippy --all-targets -- -D warnings)
(cd packages/derive && cargo check && cargo clippy --all-targets -- -D warnings)
(cd packages/profiler && cargo check && cargo clippy --all-targets -- -D warnings)
(
cd packages/std
cargo check
Expand Down
1 change: 0 additions & 1 deletion devtools/deadlinks.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ def check_project(project):
projects = [
"cosmwasm_crypto",
"cosmwasm_derive",
"cosmwasm_profiler",
"cosmwasm_schema",
"cosmwasm_std",
"cosmwasm_storage",
Expand Down
28 changes: 0 additions & 28 deletions packages/profiler/Cargo.toml

This file was deleted.

Loading

0 comments on commit 2994eb2

Please sign in to comment.