Skip to content

Commit b7eb2ad

Browse files
committed
Remove sdl2 from CI
1 parent 763e2d4 commit b7eb2ad

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.travis.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,8 @@ before_install:
6060
# Do not run bors builds against the nightly compiler.
6161
# We want to find out about nightly bugs, so they're done in master, but we don't block on them.
6262
- if [[ $TRAVIS_RUST_VERSION == "nightly" && $TRAVIS_BRANCH == "staging" ]]; then exit; fi
63-
# Extract SDL2 .deb into a cached directory (see cache section above and LIBRARY_PATH exports below)
64-
# Will no longer be needed when Trusty build environment goes out of beta at Travis CI
65-
# (assuming it will have libsdl2-dev and Rust by then)
66-
# see https://docs.travis-ci.com/user/trusty-ci-environment/
67-
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then make travis-sdl2 && export CXX=g++-5; fi
68-
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew update && brew install sdl2; fi
63+
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-5; fi
64+
- if [[ $TRAVIS_OS_NAME == "osx" ]]; then brew update; fi
6965
- if [[ $TRAVIS_OS_NAME == "windows" ]]; then choco install make; fi
7066
- rustup self update
7167
- rustup target add $TARGET; true

0 commit comments

Comments
 (0)