summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2017-08-02 19:49:25 +0200
committerJustin Worthe <justin@worthe-it.co.za>2017-08-02 19:49:25 +0200
commit3b4e312867dd81f1ab9fd864875b515c3fcb2fa1 (patch)
tree7a5a2fb1135eff7899e50f4d765e46dccf4ad788 /.travis.yml
parentafb0bed8500b4bc00eace944f82dc9f15acc884b (diff)
Experimenting with adding OSX travis build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3ff3bb0..55ae028 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,12 +3,22 @@ rust:
- stable
- beta
- nightly
+
matrix:
allow_failures:
- rust: nightly
+ - os: osx
+
addons:
apt:
packages:
- libgtk-3-bin
- libgtk-3-dev
- - libpango1.0-0 \ No newline at end of file
+ - libpango1.0-0
+
+before_install:
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install gtk+3; fi
+
+os:
+ - linux
+ - osx \ No newline at end of file