Add i586 to CI
This commit is contained in:
parent
7a61e79757
commit
b8906eff1b
12
.travis.yml
12
.travis.yml
|
@ -14,6 +14,18 @@ script:
|
||||||
- ./ci/test_full.sh
|
- ./ci/test_full.sh
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
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
|
# try a target that doesn't have std at all
|
||||||
- name: "no_std"
|
- name: "no_std"
|
||||||
rust: stable
|
rust: stable
|
||||||
|
|
Loading…
Reference in New Issue