blob: e61a6b0197cc0c32be4a30a0e09a9cdee155c275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: rust
sudo: false
rust:
# There's currently a cargo bug on stable which prevents libfontconfig_sys
# from building properly.
- 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
|