Skip to content

Commit

Permalink
Make cranelift feature non-default for hackatom
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 authored and uint committed Dec 8, 2021
1 parent 0d5cb4c commit c827a2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,8 @@ jobs:
name: Unit tests
command: cargo unit-test --locked
- run:
name: Integration tests (singlepass backend)
command: cargo integration-test --locked --no-default-features
name: Integration tests
command: cargo integration-test --locked
- run:
name: Build and run schema generator
command: cargo schema --locked
Expand Down
6 changes: 3 additions & 3 deletions contracts/hackatom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ incremental = false
overflow-checks = true

[features]
# Change this to [] if you don't need Windows support and want faster integration tests.
default = ["cranelift"]
# Use cranelift backend instead of singlepass. This is required for development on Windows.
# Add feature "cranelift" to default if you need 32 bit or ARM support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit or ARM machines.
cranelift = ["cosmwasm-vm/cranelift"]
# For quicker tests, cargo test --lib. for more explicit tests, cargo test --features=backtraces
backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]
Expand Down

0 comments on commit c827a2f

Please sign in to comment.