redox/.travis.yml

31 lines
761 B
YAML
Raw Normal View History

2016-11-05 15:42:27 +01:00
sudo: required
2016-10-26 21:59:31 +02:00
language: rust
rust:
- nightly
os:
- linux
2016-11-05 15:42:27 +01:00
- osx
2016-11-05 15:46:10 +01:00
dist: trusty
2016-10-26 21:59:31 +02:00
before_install:
- if [ `uname` = "Darwin" ]; then
brew update;
2016-11-06 23:36:53 +01:00
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;
2016-11-05 15:42:27 +01:00
fi
- if [ `uname` = "Linux" ]; then
2016-11-05 16:21:42 +01:00
sudo apt-get install -qq nasm pkg-config fuse libfuse-dev;
2016-11-05 15:42:27 +01:00
sudo modprobe fuse;
sudo chmod 666 /dev/fuse;
sudo chown root:$USER /etc/fuse.conf;
2016-10-26 21:59:31 +02:00
fi
script:
- make clean
- make all -j 3
notifications:
email: false
webhooks: http://37.139.9.28:54863/travis
#branches:
# only:
# - auto