Remove low-memory feature from CI

This commit is contained in:
Steven Roose 2020-06-19 11:59:37 +01:00
parent 988f99309f
commit c4f7a37b5c
No known key found for this signature in database
GPG Key ID: 2F2A88D7F8D68E87
2 changed files with 5 additions and 13 deletions

View File

@ -7,24 +7,17 @@ matrix:
- rust: beta
- rust: nightly
env: BENCHES=true
- rust: 1.24.0
- rust: 1.22.0
env: ONLY_LOW_MEMORY=true
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y binutils-dev libunwind8-dev
script:
- if not ${ONLY_LOW_MEMORY}; then cargo build --verbose; fi
- if not ${ONLY_LOW_MEMORY}; then cargo test --verbose; fi
- if not ${ONLY_LOW_MEMORY}; then cargo build --verbose --features rand,all-languages; fi
- if not ${ONLY_LOW_MEMORY}; then cargo test --verbose --features rand,all-languages; fi
# low-memory
- cargo build --verbose --features low-memory
- cargo test --verbose --features low-memory
- cargo build --verbose --features low-memory,rand,all-languages
- cargo test --verbose --features low-memory,rand,all-languages
- cargo build --verbose
- cargo test --verbose
- cargo build --verbose --features rand,all-languages
- cargo test --verbose --features rand,all-languages
# benchmarks
- if ${BENCHES}; then cargo bench --verbose --features rand; fi
- if ${BENCHES}; then cargo bench --verbose --features rand,japanese; fi

View File

@ -5,6 +5,5 @@ A Rust implementation of BIP-39 mnemonic codes.
## MSRV
This crate supports Rust v1.24 and up.
With the `low-memory` feature, v1.22 and up are supported.
This crate supports Rust v1.22 and up.