aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-10-22 10:45:11 -0400
committerDrew DeVault <sir@cmpwn.com>2017-11-11 09:09:17 -0500
commitc3457de28a37d074a960cd464445de02d6527997 (patch)
tree8bba9695d3ce5da95da29e1135b8ddcc88a09db4 /.travis.yml
parent7c448b408126aef0561be0761871f968921d7db0 (diff)
Fix build yml files
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 3eeb1682..be7ac3e0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,8 +24,17 @@ arch:
- wlc-git
- libcap
script:
- - "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ."
- - "make"
+ - git clone https://github.com/swaywm/wlroots
+ - cd wlroots
+ - mkdir build
+ - cd build
+ - meson --prefix=/usr ..
+ - sudo ninja install
+ - cd ../..
+ - cmake .
+ - make
+ - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
+ - make
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"