Skip to content

Commit bfcd391

Browse files
committed
Add libm to CI
1 parent 95da8fe commit bfcd391

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ matrix:
1818
before_script:
1919
- rustup target add $TARGET
2020
script:
21-
- cargo build --verbose --target $TARGET --no-default-features --features rand,serde
21+
- cargo build --verbose --target $TARGET --no-default-features --features libm,rand,serde
2222
- name: "rustfmt"
2323
rust: 1.31.0
2424
before_script:

ci/test_full.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ set -ex
55
echo Testing num-complex on rustc ${TRAVIS_RUST_VERSION}
66

77
case "$TRAVIS_RUST_VERSION" in
8-
1.31.*) FEATURES="serde" ;;
9-
*) FEATURES="serde rand" ;;
8+
1.31.*) FEATURES="libm serde" ;;
9+
*) FEATURES="libm serde rand" ;;
1010
esac
1111

1212
# num-complex should build and test everywhere.

0 commit comments

Comments
 (0)