travis: remove unused scons 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 dependencies where we require specific versions (or where
62 # disallowed by Travis CI's package whitelisting).
63
64 script:
65 - if test "x$BUILD" = xmake; then
66 export CFLAGS="$CFLAGS -isystem`pwd`";
67
68 mkdir build &&
69 cd build &&
70 ../autogen.sh
71 --enable-autotools
72 --enable-debug
73 $LIBUNWIND_FLAGS
74 $DRI_LOADERS
75 --with-dri-drivers=$DRI_DRIVERS
76 $GALLIUM_ST
77 --with-gallium-drivers=$GALLIUM_DRIVERS
78 --with-vulkan-drivers=$VULKAN_DRIVERS
79 --disable-llvm-shared-libs
80 &&
81 make && eval $MAKE_CHECK_COMMAND;
82 fi
83
84 - |
85 if test "x$BUILD" = xmeson; then
86 if test -n "$LLVM_CONFIG"; then
87 # We need to control the version of llvm-config we're using, so we'll
88 # generate a native file to do so. This requires meson >=0.49
89 #
90 echo -e "[binaries]\nllvm-config = '`which $LLVM_CONFIG`'" > native.file
91
92 $LLVM_CONFIG --version
93 else
94 : > native.file
95 fi
96
97 export CFLAGS="$CFLAGS -isystem`pwd`"
98 meson _build \
99 --native-file=native.file \
100 -Dbuild-tests=true \
101 -Dlibunwind=${UNWIND} \
102 ${DRI_LOADERS} \
103 -Ddri-drivers=${DRI_DRIVERS:-[]} \
104 ${GALLIUM_ST} \
105 -Dgallium-drivers=${GALLIUM_DRIVERS:-[]} \
106 -Dvulkan-drivers=${VULKAN_DRIVERS:-[]}
107 meson configure _build
108 ninja -C _build
109 ninja -C _build test
110 fi