File tree Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Expand file tree Collapse file tree 2 files changed +16
-13
lines changed Original file line number Diff line number Diff line change @@ -4,23 +4,21 @@ dist: trusty
4
4
services :
5
5
- docker
6
6
7
- # rust:
8
- # - 1.1.0 # Oldest supported version
9
- # - 1.2.0
10
- # - 1.3.0
11
- # - 1.4.0
12
- # - 1.5.0
13
- # - 1.6.0
14
- # - stable
15
- # - beta
16
- # - nightly
7
+ rust :
8
+ - 1.1.0 # Oldest supported version
9
+ - stable
10
+ - beta
11
+ - nightly
17
12
18
13
script :
19
14
- bash ci/run-travis.sh
20
15
21
- # os:
22
- # - linux
23
- # - osx
16
+ env :
17
+ - ARCH=x86_64
18
+
19
+ os :
20
+ - linux
21
+ - osx
24
22
25
23
# Failures on nightly shouldn't fail the overall build.
26
24
matrix :
Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ if [ "$TARGET" = "" ]; then
27
27
TARGET=$HOST
28
28
fi
29
29
30
+ if [ " $TARGET " = " i686-unknown-linux-gnu" ]; then
31
+ sudo apt-get -y update
32
+ sudo apt-get install -y gcc-multilib
33
+ fi
34
+
30
35
if [ " $DOCKER_IMAGE " = " " ]; then
31
36
export RUST_TEST_THREADS=1
32
37
curl -sSL " https://raw.githubusercontent.com/carllerche/travis-rust-matrix/master/test" | bash
You can’t perform that action at this time.
0 commit comments