summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJose Fonseca <jose.r.fonseca@gmail.com>2021-03-19 20:08:54 +0000
committerMarge Bot <eric+marge@anholt.net>2021-03-20 10:38:55 +0000
commit6e6cd7d93cc54fc8c279377c2d552761f4457174 (patch)
tree9a4aeaca6cb9effd78d5ce36807fe7feaba27ee2 /.travis.yml
parent85c1770044830fe2fcfb93c84df342706b7a8f38 (diff)
scons: Remove.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9720>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 0 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index ab8e67e74bd..c05ed55eeda 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,17 +13,12 @@ matrix:
include:
- env:
- BUILD=meson
- - env:
- - BUILD=scons
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install expat gettext
- if test "x$BUILD" = xmeson; then
HOMEBREW_NO_AUTO_UPDATE=1 brew install ninja;
fi
- - if test "x$BUILD" = xscons; then
- HOMEBREW_NO_AUTO_UPDATE=1 brew install scons;
- fi
# Set PATH for homebrew pip3 installs
- PYTHON_VERSION=$(python3 -V | awk '{print $2}' | cut -d. -f1-2)
@@ -47,9 +42,6 @@ install:
pip3 install --user meson;
pip3 install --user mako;
fi
- - if test "x$BUILD" = xscons; then
- pip2 install --user mako;
- fi
script:
- if test "x$BUILD" = xmeson; then
@@ -58,7 +50,3 @@ script:
ninja -C _build test || travis_terminate 1;
ninja -C _build install || travis_terminate 1;
fi
- - if test "x$BUILD" = xscons; then
- scons force_scons=1 || travis_terminate 1;
- scons force_scons=1 check || travis_terminate 1;
- fi