1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-27 20:59:01 +00:00

update travis config to run additional build without X11 (#321)

This commit is contained in:
Vincent Cheng 2016-09-12 09:43:39 -07:00 committed by Brenden Matthews
parent 41aa51e7ab
commit 6c4c28672f

View File

@ -18,9 +18,11 @@ addons:
- libcairo2-dev
- gawk
before_script:
- mkdir build && cd build && cmake ../
- mkdir build && cd build && cmake .. && cd ..
- mkdir build-no-x11 && cd build-no-x11 && cmake -DBUILD_X11=OFF .. && cd ..
script:
- make -j4
- cd build && make -j4 && cd ..
- cd build-no-x11 && make -j4 && cd ..
branches:
only:
- master