max7219 0.1.1

A platform agnostic driver to interface the MAX7219 (LED driver)
Documentation

language: rust
services: docker

matrix:
  include:
    # Linux
    - env: TARGET=x86_64-unknown-linux-gnu
      rust: stable

    # Bare metal
    - env: TARGET=riscv32imac-unknown-none-elf
      rust: stable
    - env: TARGET=thumbv6m-none-eabi
      rust: stable
    - env: TARGET=thumbv7m-none-eabi
      rust: stable
    - env: TARGET=thumbv7em-none-eabi
      rust: stable
    - env: TARGET=thumbv7em-none-eabihf
      rust: stable

before_install:
  - set -e
  - rustup self update

install:
  - sh ci/install.sh
  - source ~/.cargo/env || true

script:
  - bash ci/script.sh

after_script: set +e

cache:
  cargo: true

before_cache:
  # Travis can't cache files that are not readable by "others"
  - chmod -R a+r $HOME/.cargo

branches:
  only:
    - auto
    - master
    - try

notifications:
  email:
    on_success: never