Skip to content

Commit

Permalink
Merge pull request #3 from cambridgeconsultants/travis
Browse files Browse the repository at this point in the history
Add travis support.
  • Loading branch information
Jonathan Pallant authored May 18, 2018
2 parents b0e2188 + 50bea09 commit 6bfacff
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
cache: cargo
script:
- cargo build --verbose --all
- cargo test --verbose --all
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Grease: A multi-threaded message-passing approach to writing protocol stacks in Rust

[![Build Status](https://travis-ci.org/cambridgeconsultants/grease.svg?branch=master)](https://travis-ci.org/cambridgeconsultants/grease)

## Introduction

Grease is designed to facilitate a message-passing based approach to protocol stack development. Message passing between tasks, as opposed to function-call based protocol stacks, has a number of advantages:
Expand Down

0 comments on commit 6bfacff

Please sign in to comment.