Update .travis.yml

This commit is contained in:
Jeremy Soller 2016-11-06 17:10:00 -07:00 committed by GitHub
parent c40e26f89e
commit 55659cde27

View file

@ -4,27 +4,25 @@ rust:
- nightly - nightly
os: os:
- linux - linux
- osx # - osx
dist: trusty dist: trusty
before_install: before_install:
- if [ `uname` = "Darwin" ]; then
brew update;
brew install make nasm qemu gcc49 pkg-config Caskroom/cask/osxfuse;
brew tap glendc/gcc_cross_compilers;
brew install glendc/gcc_cross_compilers/x64-elf-binutils glendc/gcc_cross_compilers/x64-elf-gcc;
fi
- if [ `uname` = "Linux" ]; then - if [ `uname` = "Linux" ]; then
sudo apt-get install -qq nasm pkg-config fuse libfuse-dev; sudo apt-get install -qq nasm pkg-config fuse libfuse-dev;
sudo modprobe fuse; sudo modprobe fuse;
sudo chmod 666 /dev/fuse; sudo chmod 666 /dev/fuse;
sudo chown root:$USER /etc/fuse.conf; sudo chown root:$USER /etc/fuse.conf;
fi fi
- if [ `uname` = "Darwin" ]; then
brew update;
brew install nasm gcc49 pkg-config Caskroom/cask/osxfuse;
brew tap glendc/gcc_cross_compilers;
brew install glendc/gcc_cross_compilers/x64-elf-binutils glendc/gcc_cross_compilers/x64-elf-gcc;
fi
script: script:
- make clean - make clean
- make all -j 3 - make all -j 2
notifications: notifications:
email: false email: false
webhooks: http://37.139.9.28:54863/travis webhooks: http://37.139.9.28:54863/travis
#branches:
# only:
# - auto