1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-17 10:35:10 +00:00
conky/.travis.yml
Erinor2 a34663f844 Transparency: Double-buffer not taken into consideration when selecting X11 when using ccmake (#383)
* Solved an issue when having own_visual_argb_visual combined with double_buffer
which break with an error. And when disabling this combination Conky is not
anymore transparent.

* Added imlib2 for travis

* Added libimlib2-dev for travis
2018-01-19 09:08:14 -05:00

32 lines
620 B
YAML

language: cpp
compiler:
- gcc
addons:
apt:
packages:
- cmake
- libxdamage-dev
- libx11-dev
- libxft-dev
- libxdamage-dev
- libxext-dev
- libglib2.0-dev
- libxml2-dev
- libcurl4-gnutls-dev
- liblua5.1-0-dev
- libtolua++5.1-dev
- libcairo2-dev
- libimlib2-dev
- libxinerama-dev
- gawk
before_script:
- mkdir build && cd build && cmake .. && cd ..
- mkdir build-no-x11 && cd build-no-x11 && cmake -DBUILD_X11=OFF .. && cd ..
script:
- cd build && make -j4 && cd ..
- cd build-no-x11 && make -j4 && cd ..
branches:
only:
- master
sudo: false