aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorZachary Dremann <dremann@gmail.com>2014-06-25 15:50:16 -0400
committerZachary Dremann <dremann@gmail.com>2014-06-25 16:06:44 -0400
commitae22f22a931b207301681f2fc948e8e9cfd1daf7 (patch)
tree3e1b8d6ef91f010fe048bf5d205b90d6f16b68d2 /.travis.yml
parent4beb868e0ca2aa5ad9c29e4ba934c0fd8fc2501e (diff)
downloadrusty-irc-ae22f22a931b207301681f2fc948e8e9cfd1daf7.tar.gz
rusty-irc-ae22f22a931b207301681f2fc948e8e9cfd1daf7.zip
Updated for Cargo
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index bf105fe..8389d59 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,9 +1,12 @@
language: c
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
+ - yes | sudo add-apt-repository ppa:cmrx64/cargo
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
+ - sudo apt-get install cargo
script:
- - make lib examples
-
+ - rustc --version
+ - cargo build
+ - cd examples && cargo build