Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Apr 19, 2021
1 parent a1ccb94 commit 31dc422
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ script:

# test `no_std`-build with all features/fft implementations
- rustup target add thumbv7em-none-eabihf
- cargo check --target thumbv7em-none-eabihf --no-default-features --features "rustfft-complex"
# nope, thats BS: this crate needs STD
# - cargo check --target thumbv7em-none-eabihf --no-default-features --features "rustfft-complex"
- cargo check --target thumbv7em-none-eabihf --no-default-features --features "microfft-complex"
- cargo check --target thumbv7em-none-eabihf --no-default-features --features "microfft-real"

Expand Down
3 changes: 2 additions & 1 deletion check-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ cargo test --all-targets --no-default-features --features "microfft-real"

# test no_std
rustup target add thumbv7em-none-eabihf
cargo check --target thumbv7em-none-eabihf --no-default-features --features "rustfft-complex"
# nope, thats BS: this crate needs STD
# cargo check --target thumbv7em-none-eabihf --no-default-features --features "rustfft-complex"
cargo check --target thumbv7em-none-eabihf --no-default-features --features "microfft-complex"
cargo check --target thumbv7em-none-eabihf --no-default-features --features "microfft-real"

Expand Down

0 comments on commit 31dc422

Please sign in to comment.