ruspiro-lock 0.2.1

Simple atomic locking and safe data access (mutual exclusive) cross cores on Raspberry Pi.
Documentation
# 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