ruspiro-boot 0.1.1

The crate provides baremetal boot code for the Raspberry Pi 3 to conviniently start your custom kernel within the Rust environment without the need to dangle with all the initial setup like stack pointers, getting MMU setup or getting all cores kicked off for processing.
# build only master branch on commit's
# all other branches build on PullRequest creation
branches:
  only:
    - master

language: rust

matrix:
  fast_finish: true

  include:
    - rust: nightly

script: ./travis-build.sh

install:
# install cross compiler toolchain
  - sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
# install cargo xbuild to proper cross compile  
  - cargo install cargo-xbuild
# add the build target used for Raspbarry Pi targeting builds
  - rustup target add armv7-unknown-linux-gnueabihf
  - rustup component add rust-src
  - sudo chmod ugo+x ./travis-build.sh