diff options
author | Joe Wilm <joe@jwilm.com> | 2016-06-14 07:53:45 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-06-14 07:53:45 -0700 |
commit | 432922d624e320eda7bb278487d68ad74cdaadec (patch) | |
tree | 2cf9fe2edb592e9773c85997f2aac5d030336bac /.travis.yml | |
parent | bd8bd26c8bd6f9dfc988e222b57a71cf94902c4d (diff) | |
download | alacritty-432922d624e320eda7bb278487d68ad74cdaadec.tar.gz alacritty-432922d624e320eda7bb278487d68ad74cdaadec.zip |
Add macOS to CI matrix
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index e61a6b01..ee26adca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,14 @@ language: rust sudo: false +os: + - linux + - osx + rust: # There's currently a cargo bug on stable which prevents libfontconfig_sys - # from building properly. + # from building properly. I certainly wish I wrote down what that was. - nightly script: - # Install test font - - curl -O http://media.nodnod.net/Inconsolata-dz.otf.zip - - unzip Inconsolata-dz.otf.zip - - mkdir ~/.fonts - - mv Inconsolata-dz.otf ~/.fonts/ - cargo test |