linuxfb 0.3.1

Interface to the Linux Framebuffer API
Documentation
stages:
  - build

rust-latest:
  stage: build
  image: rust:latest
  script:
    - apt-get update && apt-get install -y clang
    - cargo build --verbose
    - cargo test --verbose

rust-latest_armv7-unknown-linux-musleabihf:
  stage: build
  image: rust:latest
  script:
    - apt-get update && apt-get install -y clang
    - rustup target add armv7-unknown-linux-musleabihf
    - cargo build --verbose --target armv7-unknown-linux-musleabihf
    - cargo test --verbose --target armv7-unknown-linux-musleabihf
  allow_failure: true

rust-nightly:
  stage: build
  image: rustlang/rust:nightly
  script:
    - apt-get update && apt-get install -y clang
    - cargo build --verbose
    - cargo test --verbose
  allow_failure: true