summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-10-22 10:45:11 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2017-11-11 09:09:17 -0500
commitc3457de28a37d074a960cd464445de02d6527997 (patch)
tree8bba9695d3ce5da95da29e1135b8ddcc88a09db4 /.travis.yml
parentFire up the wlroots backend and run the event loop (diff)
downloadsway-c3457de28a37d074a960cd464445de02d6527997.tar.gz
sway-c3457de28a37d074a960cd464445de02d6527997.tar.zst
sway-c3457de28a37d074a960cd464445de02d6527997.zip
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:
24 - wlc-git 24 - wlc-git
25 - libcap 25 - libcap
26 script: 26 script:
27 - "cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ." 27 - git clone https://github.com/swaywm/wlroots
28 - "make" 28 - cd wlroots
29 - mkdir build
30 - cd build
31 - meson --prefix=/usr ..
32 - sudo ninja install
33 - cd ../..
34 - cmake .
35 - make
36 - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .
37 - make
29 38
30script: 39script:
31 - "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash" 40 - "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"