relm 0.11.0

Asynchronous, GTK+-based, GUI library, inspired by Elm, written in Rust
Documentation
sudo: required
dist: trusty
language: rust
addons:
  apt:
    packages:
      - libcurl4-openssl-dev
      - libelf-dev
      - libdw-dev
      - binutils-dev
      - libgtk-3-dev
      - libsoup2.4-dev

env:
  - RUST_BACKTRACE=1

rust:
  - nightly
  #- beta
  #- stable

before_install:
  - sudo add-apt-repository ppa:webkit-team/ppa -y
  - sudo apt-get update
  - sudo apt-get install libwebkit2gtk-4.0-dev -y

before_script:
  - "export DISPLAY=:99.0"
  - "sh -e /etc/init.d/xvfb start"
  - sleep 3 # give xvfb some time to start

script:
  - cargo build
  - cargo test --no-run -v
  #- cargo build --manifest-path examples/http/Cargo.toml
  #- cargo build --manifest-path examples/async/Cargo.toml
  #- cargo build --manifest-path examples/webkit-test/Cargo.toml
  - cargo build --manifest-path examples/buttons-derive/Cargo.toml

matrix:
  allow_failures:
    - rust: stable
    - rust: beta