diff options
author | Joe Wilm <joe@jwilm.com> | 2016-02-21 15:20:03 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-02-21 15:20:03 -0800 |
commit | 2a7dc1deb825f9f1db6de8b50656ef420ff41a44 (patch) | |
tree | e7206c9a4187232bccee88ee7cfa5e1d14ecbad4 /.travis.yml | |
parent | 621776cd94890936b24f3abb8b7ec1f36dad9150 (diff) | |
download | alacritty-2a7dc1deb825f9f1db6de8b50656ef420ff41a44.tar.gz alacritty-2a7dc1deb825f9f1db6de8b50656ef420ff41a44.zip |
Add function for listing font names on linux
This function isn't exactly useful, but it's working ffi with the
fontconfig library. Woo! Next step will be returning some objects with
more information (like font path so we can start rendering glyphs!).
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..e0aa2236 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: rust +sudo: false + +rust: + # There's currently a cargo bug on stable which prevents libfontconfig_sys + # from building properly. + - nightly + +script: + - cargo test |