travis: remove unused linux code path
[mesa.git] / .travis.yml
1 language: c
2
3 dist: xenial
4
5 cache:
6 ccache: true
7
8 matrix:
9 include:
10 - env:
11 - LABEL="macOS make"
12 - BUILD=make
13 - MAKEFLAGS="-j4"
14 - MAKE_CHECK_COMMAND="make check"
15 - DRI_LOADERS="--with-platforms=x11 --disable-egl"
16 os: osx
17 - env:
18 - LABEL="macOS meson"
19 - BUILD=meson
20 - UNWIND="false"
21 - DRI_LOADERS="-Dglx=dri -Dgbm=false -Degl=false -Dplatforms=x11 -Dosmesa=none"
22 - GALLIUM_ST="-Ddri3=true -Dgallium-vdpau=false -Dgallium-xvmc=false -Dgallium-omx=disabled -Dgallium-va=false -Dgallium-xa=false -Dgallium-nine=false -Dgallium-opencl=disabled"
23 os: osx
24
25 before_install:
26 - |
27 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
28 HOMEBREW_NO_AUTO_UPDATE=1 brew install python3 ninja expat gettext
29 # Set PATH for homebrew pip3 installs
30 PATH="$HOME/Library/Python/3.6/bin:${PATH}"
31 # Set PKG_CONFIG_PATH for keg-only expat
32 PKG_CONFIG_PATH="/usr/local/opt/expat/lib/pkgconfig:${PKG_CONFIG_PATH}"
33 # Set PATH for keg-only gettext
34 PATH="/usr/local/opt/gettext/bin:${PATH}"
35
36 # Install xquartz for prereqs ...
37 XQUARTZ_VERSION="2.7.11"
38 wget -nv https://dl.bintray.com/xquartz/downloads/XQuartz-${XQUARTZ_VERSION}.dmg
39 hdiutil attach XQuartz-${XQUARTZ_VERSION}.dmg
40 sudo installer -pkg /Volumes/XQuartz-${XQUARTZ_VERSION}/XQuartz.pkg -target /
41 hdiutil detach /Volumes/XQuartz-${XQUARTZ_VERSION}
42 # ... and set paths
43 PATH="/opt/X11/bin:${PATH}"
44 PKG_CONFIG_PATH="/opt/X11/share/pkgconfig:/opt/X11/lib/pkgconfig:${PKG_CONFIG_PATH}"
45 ACLOCAL="aclocal -I /opt/X11/share/aclocal -I /usr/local/share/aclocal"
46 fi
47
48 install:
49 # Install a more modern meson from pip, since the version in the
50 # ubuntu repos is often quite old.
51 - if test "x$BUILD" = xmeson; then
52 pip3 install --user meson;
53 pip3 install --user mako;
54 fi
55
56 # Install autotools build dependencies
57 - if test "x$BUILD" = xmake; then
58 pip2 install --user mako;
59 fi
60
61 # Install a more modern scons from pip.
62 - if test "x$BUILD" = xscons; then
63 pip2 install --user "scons>=2.4";
64 pip2 install --user mako;
65 fi
66
67 # Install dependencies where we require specific versions (or where
68 # disallowed by Travis CI's package whitelisting).
69
70 script:
71 - if test "x$BUILD" = xmake; then
72 export CFLAGS="$CFLAGS -isystem`pwd`";
73
74 mkdir build &&
75 cd build &&
76 ../autogen.sh
77 --enable-autotools
78 --enable-debug
79 $LIBUNWIND_FLAGS
80 $DRI_LOADERS
81 --with-dri-drivers=$DRI_DRIVERS
82 $GALLIUM_ST
83 --with-gallium-drivers=$GALLIUM_DRIVERS
84 --with-vulkan-drivers=$VULKAN_DRIVERS
85 --disable-llvm-shared-libs
86 &&
87 make && eval $MAKE_CHECK_COMMAND;
88 fi
89
90 - if test "x$BUILD" = xscons; then
91 scons $SCONS_TARGET && eval $SCONS_CHECK_COMMAND;
92 fi
93
94 - |
95 if test "x$BUILD" = xmeson; then
96 if test -n "$LLVM_CONFIG"; then
97 # We need to control the version of llvm-config we're using, so we'll
98 # generate a native file to do so. This requires meson >=0.49
99 #
100 echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file
101
102 $LLVM_CONFIG --version
103 else
104 : > native.file
105 fi
106
107 export CFLAGS="$CFLAGS -isystem`pwd`"
108 meson _build \
109 --native-file=native.file \
110 -Dbuild-tests=true \
111 -Dlibunwind=${UNWIND} \
112 ${DRI_LOADERS} \
113 -Ddri-drivers=${DRI_DRIVERS:-[]} \
114 ${GALLIUM_ST} \
115 -Dgallium-drivers=${GALLIUM_DRIVERS:-[]} \
116 -Dvulkan-drivers=${VULKAN_DRIVERS:-[]}
117 meson configure _build
118 ninja -C _build
119 ninja -C _build test
120 fi