From b9b24f546eda9a9e01c939a64d687c8356450e29 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 26 Oct 2016 13:59:31 -0600 Subject: [PATCH] Add travis.yml --- .travis.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..dd9e87c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,27 @@ +sudo: false +language: rust +rust: + - nightly +addons: + apt: + packages: + - nasm + - libfuse-dev +os: + - linux +before_install: + - if [ `uname` = "Darwin" ]; then + brew tap nashenas88/gcc_cross_compilers; + brew update; + brew unlink gcc; + brew install nashenas88/gcc_cross_compilers/i386-elf-binutils nashenas88/gcc_cross_compilers/i386-elf-gcc nasm; + fi +script: + - make clean + - make all -j 3 +notifications: + email: false + webhooks: http://37.139.9.28:54863/travis +#branches: +# only: +# - auto