-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[travis] Fix build failure. Ubuntu Xenial is missing libxcb-xinput-dev.
For now, disable xinput support when build testing.
- Loading branch information
1 parent
08f6632
commit f3d7a4d
Showing
1 changed file
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,26 @@ | ||
language: c | ||
|
||
matrix: | ||
include: | ||
- os: linux | ||
dist: xenial | ||
- os: osx | ||
|
||
addons: | ||
apt: | ||
update: true | ||
|
||
before_install: | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
sudo apt-get update; | ||
sudo apt-get install -y xorg libxft2-dev libxcursor-dev libxrandr-dev libxcb-icccm4-dev; | ||
fi | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
sudo apt-get install -y libx11-dev libx11-xcb-dev libxcursor-dev libxrandr-dev libxt-dev libxtst-dev libxcb1-dev libxcb-icccm4-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-util0-dev libxcb-xtest0-dev libxft-dev libxcb-xfixes0-dev libfreetype6-dev; | ||
fi | ||
|
||
script: | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd linux && make; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | ||
# xenial doesn't include libxcb-xinput-dev, disable for now. | ||
sed -i 's/#if defined(__linux__) || defined(__FreeBSD__)/#if 0/' spectrwm.c; | ||
sed -i 's/xcb-xinput //g' linux/Makefile; | ||
cd linux; | ||
make; | ||
fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cd osx && make; fi |