Travis-CI : Attempt to remove manual building from source of SDL2

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2019-11-01 18:20:47 +01:00
parent 87c8ae2428
commit d3a1e74fac

View file

@ -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 ..