Add i586 to CI

This commit is contained in:
Josh Stone 2019-08-30 15:54:41 -07:00
parent 7a61e79757
commit b8906eff1b
1 changed files with 12 additions and 0 deletions

View File

@ -14,6 +14,18 @@ script:
- ./ci/test_full.sh
matrix:
include:
# i586 presents floating point challenges for lack of SSE/SSE2
- name: "i586"
rust: stable
env: TARGET=i586-unknown-linux-gnu
addons:
apt:
packages:
- gcc-multilib
before_script:
- rustup target add $TARGET
script:
- cargo test --verbose --target $TARGET --all-features
# try a target that doesn't have std at all
- name: "no_std"
rust: stable