Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ matrix:
# Test the top-level crate with all features:
- cargo build --target=thumbv6m-none-eabi --no-default-features

- rust: nightly
name: "Linux, nightly (32-bit test)"
env: TARGET=i686-unknown-linux-musl
install:
- rustup target add $TARGET

- rust: nightly
os: linux
name: "Miri, nightly"
Expand Down
3 changes: 3 additions & 0 deletions utils/ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ set -ex
# TARGET enables cross-building
if [ -z $TARGET ]; then
CARGO=cargo
elif [ "$TARGET" = "i686-unknown-linux-musl" ]; then
CARGO=cargo
TARGET="--target $TARGET"
else
CARGO=cross
TARGET="--target $TARGET"
Expand Down