Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not set cranelift feature by default for integration testing #834

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,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 Expand Up @@ -299,8 +299,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 Expand Up @@ -349,8 +349,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 Expand Up @@ -399,8 +399,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 All @@ -424,7 +424,6 @@ jobs:
- target/wasm32-unknown-unknown/release/deps
key: cargocache-v2-contract_ibc_reflect-rust:1.50.0-{{ checksum "Cargo.lock" }}


contract_ibc_reflect_send:
docker:
- image: rust:1.50.0
Expand All @@ -450,8 +449,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 Expand Up @@ -500,8 +499,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 Expand Up @@ -550,8 +549,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 Expand Up @@ -600,8 +599,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/burner/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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
cranelift = ["cosmwasm-vm/cranelift"]
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
Expand Down
5 changes: 2 additions & 3 deletions contracts/crypto-verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +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"]
# Add feature "cranelift" to default if you need 32 bit Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on Windows.
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
cranelift = ["cosmwasm-vm/cranelift"]
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
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
6 changes: 3 additions & 3 deletions contracts/ibc-reflect-send/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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
cranelift = ["cosmwasm-vm/cranelift"]
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
Expand Down
6 changes: 3 additions & 3 deletions contracts/ibc-reflect/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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
cranelift = ["cosmwasm-vm/cranelift"]
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
Expand Down
6 changes: 3 additions & 3 deletions contracts/queue/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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
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
6 changes: 3 additions & 3 deletions contracts/reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
cranelift = ["cosmwasm-vm/cranelift"]
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
Expand Down
6 changes: 3 additions & 3 deletions contracts/staking/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 Windows support
default = []
# Use cranelift backend instead of singlepass. This is required for development on 32 bit Windows.
cranelift = ["cosmwasm-vm/cranelift"]
# for quicker tests, cargo test --lib
# for more explicit tests, cargo test --features=backtraces
Expand Down