diff options
author | Christian Duerr <contact@christianduerr.com> | 2019-10-10 01:19:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-10 01:19:11 +0200 |
commit | 2f83f2dd2e131be5ba769655480da0b5fe8c0dc3 (patch) | |
tree | 19b300808506a4e595eaafa5e9b2c92cd2b19041 | |
parent | 4cb5566a9c2d68006ffa97e2f8082ae3ef6c8de4 (diff) | |
download | alacritty-2f83f2dd2e131be5ba769655480da0b5fe8c0dc3.tar.gz alacritty-2f83f2dd2e131be5ba769655480da0b5fe8c0dc3.zip |
Add libxcb-xfixes0-dev as travis dependency
Currently on Linux the CI is not building since it cannot fint xcb for
linking. Installing it in the pre-install hook should make sure it's
available when linking.
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5238a26c..4232282b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,11 @@ language: rust services: - docker +addons: + apt: + packages: + - libxcb-xfixes0-dev + git: depth: 1 |