aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-13 08:22:18 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-13 08:22:18 +0000
commit7cb5b7dd23afa39fe569f8312b4fe84e66ac8e61 (patch)
treeccdd9d41993a33ceb3da8d9b99e995dd4f4801dc /.travis.yml
parent6cea22b5d6314c205e6bdd7d67061f80a0bbc688 (diff)
downloadruby-7cb5b7dd23afa39fe569f8312b4fe84e66ac8e61.tar.gz
* .travis.yml: removed commented-out code.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 1710907108..f87ffd3483 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,12 +34,7 @@ os:
# far since the 1.9.1 release.
before_install:
- "CONFIG_FLAG="
-# - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq update; fi"
- # Travis ships an outdated, broken version of libssl by default
-# - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq --only-upgrade install '^libssl.*'; fi"
-# - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq install $CC; fi" # upgrade if any
- - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then JOBS='-j 4'; fi"
-#install: "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq build-dep ruby1.9.1 2>/dev/null; fi"
+ - "JOBS='-j 4'"
# Script is where the test runs. Note we just do "make test", not other tests
# like test-all, test-rubyspec. This is because they take too much time,