Skip to content

Commit

Permalink
Merge pull request #47 from sn99/master
Browse files Browse the repository at this point in the history
use of macros in benchmark + rustfmt + no-std fix + travis
  • Loading branch information
octavonce authored Feb 14, 2020
2 parents e0ee3b6 + 68a4ce8 commit 60c57e6
Show file tree
Hide file tree
Showing 9 changed files with 718 additions and 1,932 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ before_script:
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then chmod +x benches-compare.sh; fi

script:
- cargo build --verbose --all
- cargo build --verbose --all --features "dot"
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
cargo +nightly build --features "no_std dot" --verbose --all;
fi
- cargo test --verbose --all
- cargo test --verbose --all --features "dot"
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then
cargo +nightly test --features "no_std dot" --verbose --all;
fi

after_script:
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; ./benches-compare.sh; fi
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then chmod +x benches-compare.sh; fi
Loading

0 comments on commit 60c57e6

Please sign in to comment.