9e07c4b8fe16d8415f7c6f3dfe09b4a4d92276e4
[mesa.git] / .travis.yml
1 language: c
2
3 sudo: false
4 dist: trusty
5
6 cache:
7 apt: true
8 ccache: true
9
10 env:
11 global:
12 - XORG_RELEASES=https://xorg.freedesktop.org/releases/individual
13 - XCB_RELEASES=https://xcb.freedesktop.org/dist
14 - WAYLAND_RELEASES=https://wayland.freedesktop.org/releases
15 - XORGMACROS_VERSION=util-macros-1.19.0
16 - GLPROTO_VERSION=glproto-1.4.17
17 - DRI2PROTO_VERSION=dri2proto-2.8
18 - LIBPCIACCESS_VERSION=libpciaccess-0.13.4
19 - LIBDRM_VERSION=libdrm-2.4.74
20 - XCBPROTO_VERSION=xcb-proto-1.13
21 - RANDRPROTO_VERSION=randrproto-1.3.0
22 - LIBXRANDR_VERSION=libXrandr-1.3.0
23 - LIBXCB_VERSION=libxcb-1.13
24 - LIBXSHMFENCE_VERSION=libxshmfence-1.2
25 - LIBVDPAU_VERSION=libvdpau-1.1
26 - LIBVA_VERSION=libva-1.7.0
27 - LIBWAYLAND_VERSION=wayland-1.15.0
28 - WAYLAND_PROTOCOLS_VERSION=wayland-protocols-1.8
29 - PKG_CONFIG_PATH=$HOME/prefix/lib/pkgconfig:$HOME/prefix/share/pkgconfig
30 - LD_LIBRARY_PATH="$HOME/prefix/lib:$LD_LIBRARY_PATH"
31 - PATH="$HOME/prefix/bin:$PATH"
32
33 matrix:
34 include:
35 - env:
36 - LABEL="meson Vulkan"
37 - BUILD=meson
38 - MESON_OPTIONS="-Ddri-drivers=[] -Dgallium-drivers=[]"
39 - LLVM_VERSION=6.0
40 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
41 addons:
42 apt:
43 sources:
44 - llvm-toolchain-trusty-6.0
45 # llvm-6 depends on gcc-4.9 which is not in main repo
46 - ubuntu-toolchain-r-test
47 packages:
48 # LLVM packaging is broken and misses these dependencies
49 - libedit-dev
50 # From sources above
51 - llvm-6.0-dev
52 # Common
53 - xz-utils
54 - libexpat1-dev
55 - libelf-dev
56 - python3-pip
57 - env:
58 - LABEL="meson loaders/classic DRI"
59 - BUILD=meson
60 - MESON_OPTIONS="-Dvulkan-drivers=[] -Dgallium-drivers=[]"
61 addons:
62 apt:
63 packages:
64 - xz-utils
65 - x11proto-xf86vidmode-dev
66 - libexpat1-dev
67 - libx11-xcb-dev
68 - libxdamage-dev
69 - libxfixes-dev
70 - python3-pip
71 - env:
72 - LABEL="make loaders/classic DRI"
73 - BUILD=make
74 - MAKEFLAGS="-j4"
75 - MAKE_CHECK_COMMAND="make check"
76 - DRI_LOADERS="--enable-glx --enable-gbm --enable-egl --with-platforms=x11,drm,surfaceless,wayland --enable-osmesa"
77 - DRI_DRIVERS="i915,i965,radeon,r200,swrast,nouveau"
78 - GALLIUM_ST="--enable-dri --disable-opencl --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
79 - GALLIUM_DRIVERS=""
80 - VULKAN_DRIVERS=""
81 - LIBUNWIND_FLAGS="--disable-libunwind"
82 addons:
83 apt:
84 packages:
85 - xz-utils
86 - x11proto-xf86vidmode-dev
87 - libexpat1-dev
88 - libx11-xcb-dev
89 - libxdamage-dev
90 - libxfixes-dev
91 - env:
92 # NOTE: Building SWR is 2x (yes two) times slower than all the other
93 # gallium drivers combined.
94 # Start this early so that it doesn't hunder the run time.
95 - LABEL="make Gallium Drivers SWR"
96 - BUILD=make
97 - MAKEFLAGS="-j4"
98 - MAKE_CHECK_COMMAND="true"
99 - LLVM_VERSION=5.0
100 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
101 - OVERRIDE_CC="gcc-4.8"
102 - OVERRIDE_CXX="g++-4.8"
103 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
104 - DRI_DRIVERS=""
105 - GALLIUM_ST="--enable-dri --disable-opencl --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
106 - GALLIUM_DRIVERS="swr"
107 - VULKAN_DRIVERS=""
108 - LIBUNWIND_FLAGS="--enable-libunwind"
109 addons:
110 apt:
111 sources:
112 - llvm-toolchain-trusty-5.0
113 packages:
114 # LLVM packaging is broken and misses these dependencies
115 - libedit-dev
116 # From sources above
117 - llvm-5.0-dev
118 # Common
119 - xz-utils
120 - x11proto-xf86vidmode-dev
121 - libexpat1-dev
122 - libx11-xcb-dev
123 - libelf-dev
124 - libunwind8-dev
125 - env:
126 - LABEL="make Gallium Drivers RadeonSI"
127 - BUILD=make
128 - MAKEFLAGS="-j4"
129 - MAKE_CHECK_COMMAND="true"
130 - LLVM_VERSION=6.0
131 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
132 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
133 - DRI_DRIVERS=""
134 - GALLIUM_ST="--enable-dri --disable-opencl --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
135 - GALLIUM_DRIVERS="radeonsi"
136 - VULKAN_DRIVERS=""
137 - LIBUNWIND_FLAGS="--enable-libunwind"
138 addons:
139 apt:
140 sources:
141 - llvm-toolchain-trusty-6.0
142 # llvm-6 depends on gcc-4.9 which is not in main repo
143 - ubuntu-toolchain-r-test
144 packages:
145 # LLVM packaging is broken and misses these dependencies
146 - libedit-dev
147 # From sources above
148 - llvm-6.0-dev
149 # Common
150 - xz-utils
151 - x11proto-xf86vidmode-dev
152 - libexpat1-dev
153 - libx11-xcb-dev
154 - libelf-dev
155 - libunwind8-dev
156 - env:
157 - LABEL="make Gallium Drivers Other"
158 - BUILD=make
159 - MAKEFLAGS="-j4"
160 - MAKE_CHECK_COMMAND="true"
161 - LLVM_VERSION=3.9
162 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
163 # New binutils linker is required for llvm-3.9
164 - OVERRIDE_PATH=/usr/lib/binutils-2.26/bin
165 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
166 - DRI_DRIVERS=""
167 - GALLIUM_ST="--enable-dri --disable-opencl --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
168 - GALLIUM_DRIVERS="i915,nouveau,pl111,r300,r600,freedreno,svga,swrast,v3d,vc4,virgl,etnaviv,imx"
169 - VULKAN_DRIVERS=""
170 - LIBUNWIND_FLAGS="--enable-libunwind"
171 addons:
172 apt:
173 sources:
174 - llvm-toolchain-trusty-3.9
175 packages:
176 - binutils-2.26
177 # LLVM packaging is broken and misses these dependencies
178 - libedit-dev
179 # From sources above
180 - llvm-3.9-dev
181 # Common
182 - xz-utils
183 - x11proto-xf86vidmode-dev
184 - libexpat1-dev
185 - libx11-xcb-dev
186 - libelf-dev
187 - libunwind8-dev
188 - env:
189 # NOTE: Analogous to SWR above, building Clover is quite slow.
190 - LABEL="make Gallium ST Clover LLVM-3.9"
191 - BUILD=make
192 - MAKEFLAGS="-j4"
193 - MAKE_CHECK_COMMAND="true"
194 - LLVM_VERSION=3.9
195 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
196 - OVERRIDE_CC=gcc-4.7
197 - OVERRIDE_CXX=g++-4.7
198 # New binutils linker is required for llvm-3.9
199 - OVERRIDE_PATH=/usr/lib/binutils-2.26/bin
200 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
201 - DRI_DRIVERS=""
202 - GALLIUM_ST="--disable-dri --enable-opencl --enable-opencl-icd --enable-llvm --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
203 - GALLIUM_DRIVERS="r600"
204 - VULKAN_DRIVERS=""
205 - LIBUNWIND_FLAGS="--enable-libunwind"
206 addons:
207 apt:
208 sources:
209 - llvm-toolchain-trusty-3.9
210 packages:
211 - binutils-2.26
212 - libclc-dev
213 # LLVM packaging is broken and misses these dependencies
214 - libedit-dev
215 - g++-4.7
216 # From sources above
217 - llvm-3.9-dev
218 - clang-3.9
219 - libclang-3.9-dev
220 # Common
221 - xz-utils
222 - x11proto-xf86vidmode-dev
223 - libexpat1-dev
224 - libx11-xcb-dev
225 - libelf-dev
226 - libunwind8-dev
227 - env:
228 # NOTE: Analogous to SWR above, building Clover is quite slow.
229 - LABEL="make Gallium ST Clover LLVM-4.0"
230 - BUILD=make
231 - MAKEFLAGS="-j4"
232 - MAKE_CHECK_COMMAND="true"
233 - LLVM_VERSION=4.0
234 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
235 - OVERRIDE_CC=gcc-4.8
236 - OVERRIDE_CXX=g++-4.8
237 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
238 - DRI_DRIVERS=""
239 - GALLIUM_ST="--disable-dri --enable-opencl --enable-opencl-icd --enable-llvm --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
240 - GALLIUM_DRIVERS="r600"
241 - VULKAN_DRIVERS=""
242 - LIBUNWIND_FLAGS="--enable-libunwind"
243 addons:
244 apt:
245 sources:
246 - llvm-toolchain-trusty-4.0
247 packages:
248 - libclc-dev
249 # LLVM packaging is broken and misses these dependencies
250 - libedit-dev
251 - g++-4.8
252 # From sources above
253 - llvm-4.0-dev
254 - clang-4.0
255 - libclang-4.0-dev
256 # Common
257 - xz-utils
258 - x11proto-xf86vidmode-dev
259 - libexpat1-dev
260 - libx11-xcb-dev
261 - libelf-dev
262 - libunwind8-dev
263 - env:
264 # NOTE: Analogous to SWR above, building Clover is quite slow.
265 - LABEL="make Gallium ST Clover LLVM-5.0"
266 - BUILD=make
267 - MAKEFLAGS="-j4"
268 - MAKE_CHECK_COMMAND="true"
269 - LLVM_VERSION=5.0
270 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
271 - OVERRIDE_CC=gcc-4.8
272 - OVERRIDE_CXX=g++-4.8
273 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
274 - DRI_DRIVERS=""
275 - GALLIUM_ST="--disable-dri --enable-opencl --enable-opencl-icd --enable-llvm --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
276 - GALLIUM_DRIVERS="r600"
277 - VULKAN_DRIVERS=""
278 - LIBUNWIND_FLAGS="--enable-libunwind"
279 addons:
280 apt:
281 sources:
282 - llvm-toolchain-trusty-5.0
283 packages:
284 - libclc-dev
285 # LLVM packaging is broken and misses these dependencies
286 - libedit-dev
287 - g++-4.8
288 # From sources above
289 - llvm-5.0-dev
290 - clang-5.0
291 - libclang-5.0-dev
292 # Common
293 - xz-utils
294 - x11proto-xf86vidmode-dev
295 - libexpat1-dev
296 - libx11-xcb-dev
297 - libelf-dev
298 - libunwind8-dev
299 - env:
300 # NOTE: Analogous to SWR above, building Clover is quite slow.
301 - LABEL="make Gallium ST Clover LLVM-6.0"
302 - BUILD=make
303 - MAKEFLAGS="-j4"
304 - MAKE_CHECK_COMMAND="true"
305 - LLVM_VERSION=6.0
306 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
307 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
308 - DRI_DRIVERS=""
309 - GALLIUM_ST="--disable-dri --enable-opencl --enable-opencl-icd --enable-llvm --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
310 - GALLIUM_DRIVERS="r600,radeonsi"
311 - VULKAN_DRIVERS=""
312 - LIBUNWIND_FLAGS="--enable-libunwind"
313 addons:
314 apt:
315 sources:
316 - llvm-toolchain-trusty-6.0
317 # llvm-6 depends on gcc-4.9 which is not in main repo
318 - ubuntu-toolchain-r-test
319 packages:
320 - libclc-dev
321 # From sources above
322 - llvm-6.0-dev
323 - clang-6.0
324 - libclang-6.0-dev
325 # Common
326 - xz-utils
327 - x11proto-xf86vidmode-dev
328 - libexpat1-dev
329 - libx11-xcb-dev
330 - libelf-dev
331 - libunwind8-dev
332 - env:
333 - LABEL="make Gallium ST Other"
334 - BUILD=make
335 - MAKEFLAGS="-j4"
336 - MAKE_CHECK_COMMAND="true"
337 - LLVM_VERSION=3.3
338 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
339 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl"
340 - DRI_DRIVERS=""
341 - GALLIUM_ST="--enable-dri --disable-opencl --enable-xa --enable-nine --enable-xvmc --enable-vdpau --enable-va --enable-omx-bellagio --enable-gallium-osmesa"
342 # We need swrast for osmesa and nine.
343 # i915 most likely doesn't work with most ST.
344 # Regardless - we're doing a quick build test here.
345 - GALLIUM_DRIVERS="i915,swrast"
346 - VULKAN_DRIVERS=""
347 - LIBUNWIND_FLAGS="--enable-libunwind"
348 addons:
349 apt:
350 packages:
351 # We actually want to test against llvm-3.3
352 - llvm-3.3-dev
353 # Nine requires gcc 4.6... which is the one we have right ?
354 - libxvmc-dev
355 # Build locally, for now.
356 #- libvdpau-dev
357 #- libva-dev
358 - libomxil-bellagio-dev
359 # LLVM packaging is broken and misses these dependencies
360 - libedit-dev
361 # Common
362 - xz-utils
363 - x11proto-xf86vidmode-dev
364 - libexpat1-dev
365 - libx11-xcb-dev
366 - libelf-dev
367 - libunwind8-dev
368 - env:
369 - LABEL="make Vulkan"
370 - BUILD=make
371 - MAKEFLAGS="-j4"
372 - MAKE_CHECK_COMMAND="make -C src/gtest check && make -C src/intel check"
373 - LLVM_VERSION=6.0
374 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
375 - DRI_LOADERS="--disable-glx --disable-gbm --disable-egl --with-platforms=x11,wayland"
376 - DRI_DRIVERS=""
377 - GALLIUM_ST="--enable-dri --enable-dri3 --disable-opencl --disable-xa --disable-nine --disable-xvmc --disable-vdpau --disable-va --disable-omx-bellagio --disable-gallium-osmesa"
378 - GALLIUM_DRIVERS=""
379 - VULKAN_DRIVERS="intel,radeon"
380 - LIBUNWIND_FLAGS="--disable-libunwind"
381 addons:
382 apt:
383 sources:
384 - llvm-toolchain-trusty-6.0
385 # llvm-6 depends on gcc-4.9 which is not in main repo
386 - ubuntu-toolchain-r-test
387 packages:
388 # LLVM packaging is broken and misses these dependencies
389 - libedit-dev
390 # From sources above
391 - llvm-6.0-dev
392 # Common
393 - xz-utils
394 - x11proto-xf86vidmode-dev
395 - libexpat1-dev
396 - libx11-xcb-dev
397 - libelf-dev
398 - env:
399 - LABEL="scons"
400 - BUILD=scons
401 - SCONSFLAGS="-j4"
402 # Explicitly disable.
403 - SCONS_TARGET="llvm=0"
404 # Keep it symmetrical to the make build.
405 - SCONS_CHECK_COMMAND="scons llvm=0 check"
406 addons:
407 apt:
408 packages:
409 # Common
410 - xz-utils
411 - x11proto-xf86vidmode-dev
412 - libexpat1-dev
413 - libx11-xcb-dev
414 - libelf-dev
415 - env:
416 - LABEL="scons LLVM"
417 - BUILD=scons
418 - SCONSFLAGS="-j4"
419 - SCONS_TARGET="llvm=1"
420 # Keep it symmetrical to the make build.
421 - SCONS_CHECK_COMMAND="scons llvm=1 check"
422 - LLVM_VERSION=3.3
423 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
424 addons:
425 apt:
426 packages:
427 # LLVM packaging is broken and misses these dependencies
428 - libedit-dev
429 - llvm-3.3-dev
430 # Common
431 - xz-utils
432 - x11proto-xf86vidmode-dev
433 - libexpat1-dev
434 - libx11-xcb-dev
435 - libelf-dev
436 - env:
437 - LABEL="scons SWR"
438 - BUILD=scons
439 - SCONSFLAGS="-j4"
440 - SCONS_TARGET="swr=1"
441 - LLVM_VERSION=5.0
442 - LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
443 # Keep it symmetrical to the make build. There's no actual SWR, yet.
444 - SCONS_CHECK_COMMAND="true"
445 - OVERRIDE_CC="gcc-4.8"
446 - OVERRIDE_CXX="g++-4.8"
447 addons:
448 apt:
449 sources:
450 - llvm-toolchain-trusty-5.0
451 packages:
452 # LLVM packaging is broken and misses these dependencies
453 - libedit-dev
454 # From sources above
455 - llvm-5.0-dev
456 # Common
457 - xz-utils
458 - x11proto-xf86vidmode-dev
459 - libexpat1-dev
460 - libx11-xcb-dev
461 - libelf-dev
462 - env:
463 - LABEL="macOS make"
464 - BUILD=make
465 - MAKEFLAGS="-j4"
466 - MAKE_CHECK_COMMAND="make check"
467 - DRI_LOADERS="--with-platforms=x11 --disable-egl"
468 os: osx
469 - env:
470 - LABEL="macOS meson"
471 - BUILD=meson
472 - MESON_OPTIONS="-Degl=false"
473 os: osx
474
475 before_install:
476 - |
477 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
478 HOMEBREW_NO_AUTO_UPDATE=1 brew install python3 ninja expat gettext
479 # Set PATH for homebrew pip3 installs
480 PATH="$HOME/Library/Python/3.6/bin:${PATH}"
481 # Set PKG_CONFIG_PATH for keg-only expat
482 PKG_CONFIG_PATH="/usr/local/opt/expat/lib/pkgconfig:${PKG_CONFIG_PATH}"
483 # Set PATH for keg-only gettext
484 PATH="/usr/local/opt/gettext/bin:${PATH}"
485
486 # Install xquartz for prereqs ...
487 XQUARTZ_VERSION="2.7.11"
488 wget -nv https://dl.bintray.com/xquartz/downloads/XQuartz-${XQUARTZ_VERSION}.dmg
489 hdiutil attach XQuartz-${XQUARTZ_VERSION}.dmg
490 sudo installer -pkg /Volumes/XQuartz-${XQUARTZ_VERSION}/XQuartz.pkg -target /
491 hdiutil detach /Volumes/XQuartz-${XQUARTZ_VERSION}
492 # ... and set paths
493 PATH="/opt/X11/bin:${PATH}"
494 PKG_CONFIG_PATH="/opt/X11/share/pkgconfig:/opt/X11/lib/pkgconfig:${PKG_CONFIG_PATH}"
495 ACLOCAL="aclocal -I /opt/X11/share/aclocal -I /usr/local/share/aclocal"
496 fi
497
498 install:
499 - pip2 install --user mako
500
501 # Install a more modern meson from pip, since the version in the
502 # ubuntu repos is often quite old. Avoid >=0.45.0 as it needs python
503 # 3.5+
504 - if test "x$BUILD" = xmeson; then
505 pip3 install --user "meson<0.45.0";
506 fi
507
508 # Install a more modern scons from pip.
509 - if test "x$BUILD" = xscons; then
510 pip2 install --user "scons>=2.4";
511 fi
512
513 # Since libdrm gets updated in configure.ac regularly, try to pick up the
514 # latest version from there.
515 - for line in `grep "^LIBDRM.*_REQUIRED=" configure.ac`; do
516 old_ver=`echo $LIBDRM_VERSION | sed 's/libdrm-//'`;
517 new_ver=`echo $line | sed 's/.*REQUIRED=//'`;
518 if `echo "$old_ver,$new_ver" | tr ',' '\n' | sort -Vc 2> /dev/null`; then
519 export LIBDRM_VERSION="libdrm-$new_ver";
520 fi;
521 done
522
523 # Install dependencies where we require specific versions (or where
524 # disallowed by Travis CI's package whitelisting).
525
526 - |
527 if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
528 wget $XORG_RELEASES/util/$XORGMACROS_VERSION.tar.bz2
529 tar -jxvf $XORGMACROS_VERSION.tar.bz2
530 (cd $XORGMACROS_VERSION && ./configure --prefix=$HOME/prefix && make install)
531
532 wget $XORG_RELEASES/proto/$GLPROTO_VERSION.tar.bz2
533 tar -jxvf $GLPROTO_VERSION.tar.bz2
534 (cd $GLPROTO_VERSION && ./configure --prefix=$HOME/prefix && make install)
535
536 wget $XORG_RELEASES/proto/$DRI2PROTO_VERSION.tar.bz2
537 tar -jxvf $DRI2PROTO_VERSION.tar.bz2
538 (cd $DRI2PROTO_VERSION && ./configure --prefix=$HOME/prefix && make install)
539
540 wget $XCB_RELEASES/$XCBPROTO_VERSION.tar.bz2
541 tar -jxvf $XCBPROTO_VERSION.tar.bz2
542 (cd $XCBPROTO_VERSION && ./configure --prefix=$HOME/prefix && make install)
543
544 wget $XCB_RELEASES/$LIBXCB_VERSION.tar.bz2
545 tar -jxvf $LIBXCB_VERSION.tar.bz2
546 (cd $LIBXCB_VERSION && ./configure --prefix=$HOME/prefix && make install)
547
548 wget $XORG_RELEASES/lib/$LIBPCIACCESS_VERSION.tar.bz2
549 tar -jxvf $LIBPCIACCESS_VERSION.tar.bz2
550 (cd $LIBPCIACCESS_VERSION && ./configure --prefix=$HOME/prefix && make install)
551
552 wget https://dri.freedesktop.org/libdrm/$LIBDRM_VERSION.tar.bz2
553 tar -jxvf $LIBDRM_VERSION.tar.bz2
554 (cd $LIBDRM_VERSION && ./configure --prefix=$HOME/prefix --enable-vc4 --enable-freedreno --enable-etnaviv-experimental-api && make install)
555
556 wget $XORG_RELEASES/proto/$RANDRPROTO_VERSION.tar.bz2
557 tar -jxvf $RANDRPROTO_VERSION.tar.bz2
558 (cd $RANDRPROTO_VERSION && ./configure --prefix=$HOME/prefix && make install)
559
560 wget $XORG_RELEASES/lib/$LIBXRANDR_VERSION.tar.bz2
561 tar -jxvf $LIBXRANDR_VERSION.tar.bz2
562 (cd $LIBXRANDR_VERSION && ./configure --prefix=$HOME/prefix && make install)
563
564 wget $XORG_RELEASES/lib/$LIBXSHMFENCE_VERSION.tar.bz2
565 tar -jxvf $LIBXSHMFENCE_VERSION.tar.bz2
566 (cd $LIBXSHMFENCE_VERSION && ./configure --prefix=$HOME/prefix && make install)
567
568 wget https://people.freedesktop.org/~aplattner/vdpau/$LIBVDPAU_VERSION.tar.bz2
569 tar -jxvf $LIBVDPAU_VERSION.tar.bz2
570 (cd $LIBVDPAU_VERSION && ./configure --prefix=$HOME/prefix && make install)
571
572 wget https://www.freedesktop.org/software/vaapi/releases/libva/$LIBVA_VERSION.tar.bz2
573 tar -jxvf $LIBVA_VERSION.tar.bz2
574 (cd $LIBVA_VERSION && ./configure --prefix=$HOME/prefix --disable-wayland --disable-dummy-driver && make install)
575
576 wget $WAYLAND_RELEASES/$LIBWAYLAND_VERSION.tar.xz
577 tar -axvf $LIBWAYLAND_VERSION.tar.xz
578 (cd $LIBWAYLAND_VERSION && ./configure --prefix=$HOME/prefix --enable-libraries --without-host-scanner --disable-documentation --disable-dtd-validation && make install)
579
580 wget $WAYLAND_RELEASES/$WAYLAND_PROTOCOLS_VERSION.tar.xz
581 tar -axvf $WAYLAND_PROTOCOLS_VERSION.tar.xz
582 (cd $WAYLAND_PROTOCOLS_VERSION && ./configure --prefix=$HOME/prefix && make install)
583
584 # Meson requires ninja >= 1.6, but trusty has 1.3.x
585 wget https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-linux.zip
586 unzip ninja-linux.zip
587 mv ninja $HOME/prefix/bin/
588
589 # Generate this header since one is missing on the Travis instance
590 mkdir -p linux
591 printf "%s\n" \
592 "#ifndef _LINUX_MEMFD_H" \
593 "#define _LINUX_MEMFD_H" \
594 "" \
595 "#define MFD_CLOEXEC 0x0001U" \
596 "#define MFD_ALLOW_SEALING 0x0002U" \
597 "" \
598 "#endif /* _LINUX_MEMFD_H */" > linux/memfd.h
599
600 # Generate this header, including the missing SYS_memfd_create
601 # macro, which is not provided by the header in the Travis
602 # instance
603 mkdir -p sys
604 printf "%s\n" \
605 "#ifndef _SYSCALL_H" \
606 "#define _SYSCALL_H 1" \
607 "" \
608 "#include <asm/unistd.h>" \
609 "" \
610 "#ifndef _LIBC" \
611 "# include <bits/syscall.h>" \
612 "#endif" \
613 "" \
614 "#ifndef __NR_memfd_create" \
615 "# define __NR_memfd_create 319 /* Taken from <asm/unistd_64.h> */" \
616 "#endif" \
617 "" \
618 "#ifndef SYS_memfd_create" \
619 "# define SYS_memfd_create __NR_memfd_create" \
620 "#endif" \
621 "" \
622 "#endif" > sys/syscall.h
623 fi
624
625 script:
626 - if test "x$BUILD" = xmake; then
627 test -n "$OVERRIDE_CC" && export CC="$OVERRIDE_CC";
628 test -n "$OVERRIDE_CXX" && export CXX="$OVERRIDE_CXX";
629 test -n "$OVERRIDE_PATH" && export PATH="$OVERRIDE_PATH:$PATH";
630
631 export CFLAGS="$CFLAGS -isystem`pwd`";
632
633 mkdir build &&
634 cd build &&
635 ../autogen.sh --enable-debug
636 $LIBUNWIND_FLAGS
637 $DRI_LOADERS
638 --with-dri-drivers=$DRI_DRIVERS
639 $GALLIUM_ST
640 --with-gallium-drivers=$GALLIUM_DRIVERS
641 --with-vulkan-drivers=$VULKAN_DRIVERS
642 --disable-llvm-shared-libs
643 &&
644 make && eval $MAKE_CHECK_COMMAND;
645 fi
646
647 - if test "x$BUILD" = xscons; then
648 test -n "$OVERRIDE_CC" && export CC="$OVERRIDE_CC";
649 test -n "$OVERRIDE_CXX" && export CXX="$OVERRIDE_CXX";
650 scons $SCONS_TARGET && eval $SCONS_CHECK_COMMAND;
651 fi
652
653 - |
654 if test "x$BUILD" = xmeson; then
655
656 # Travis CI has moved to LLVM 5.0, and meson is detecting
657 # automatically the available version in /usr/local/bin based on
658 # the PATH env variable order preference.
659 #
660 # As for 0.44.x, Meson cannot receive the path to the
661 # llvm-config binary as a configuration parameter. See
662 # https://github.com/mesonbuild/meson/issues/2887 and
663 # https://github.com/dcbaker/meson/commit/7c8b6ee3fa42f43c9ac7dcacc61a77eca3f1bcef
664 #
665 # We want to use the custom (APT) installed version. Therefore,
666 # let's make Meson find our wanted version sooner than the one
667 # at /usr/local/bin
668 #
669 # Once this is corrected, we would still need a patch similar
670 # to:
671 # https://lists.freedesktop.org/archives/mesa-dev/2017-December/180217.html
672 test -f /usr/bin/$LLVM_CONFIG && ln -s /usr/bin/$LLVM_CONFIG $HOME/prefix/bin/llvm-config
673
674 export CFLAGS="$CFLAGS -isystem`pwd`"
675 meson _build $MESON_OPTIONS
676 ninja -C _build
677 fi