From d3a1e74facd9bf8ef6cf653b06beef1832a0cdd3 Mon Sep 17 00:00:00 2001 From: Gabriel Ravier Date: Fri, 1 Nov 2019 18:20:47 +0100 Subject: [PATCH] Travis-CI : Attempt to remove manual building from source of SDL2 Signed-off-by: Gabriel Ravier --- .travis.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 072ec9c6..57947a39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -109,16 +109,6 @@ install: # Install required libraries - mkdir travisLibs && cd travisLibs - # Install modern SDL2 - - SDL2_VERSION=2.0.10 - - | - travis_retry curl -L https://www.libsdl.org/release/SDL2-${SDL2_VERSION}.tar.gz | tar xz - cd SDL2-${SDL2_VERSION} - ./configure - make -j ${JOBS} - sudo make install -j ${JOBS} - cd .. - # Finished installing required libraries - cd ..