Skip to content

Commit

Permalink
Merge pull request #15249 from JuliaLang/tk/travisi386fix
Browse files Browse the repository at this point in the history
attempt to fix 32 bit linux travis
  • Loading branch information
tkelman committed Feb 26, 2016
2 parents cbd47f2 + b684db0 commit 8b49805
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ matrix:
packages:
- bar
- time
- binutils:i386
- gcc-5:i386
- g++-5:i386
- binutils
- gcc-5
- g++-5
- gcc-5-multilib
- g++-5-multilib
- make:i386
- cpp-5:i386
- libssl-dev:i386
- gfortran-5:i386
- gfortran-5
- gfortran-5-multilib
- os: linux
env: ARCH="x86_64"
compiler: "g++-5 -m64"
Expand Down Expand Up @@ -61,8 +63,11 @@ before_install:
ln -s /usr/bin/gcc-5 $HOME/bin/gcc;
ln -s /usr/bin/g++-5 $HOME/bin/g++;
ln -s /usr/bin/gfortran-5 $HOME/bin/gfortran;
ln -s /usr/bin/gcc-5 $HOME/bin/x86_64-linux-gnu-gcc;
ln -s /usr/bin/g++-5 $HOME/bin/x86_64-linux-gnu-g++;
gcc --version;
BUILDOPTS="-j3 VERBOSE=1 FORCE_ASSERTIONS=1";
echo "override ARCH=$ARCH" >> Make.user;
TESTSTORUN="all";
elif [ `uname` = "Darwin" ]; then
brew update;
Expand Down

0 comments on commit 8b49805

Please sign in to comment.